aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeilun Du <wdu@google.com>2024-01-25 00:30:44 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-01-25 15:36:11 +0000
commit076214b0627adb20e2d4d5c9a3ff7561d3333e1d (patch)
treed3d6e93aff4737d09e27b7b5f997ebea5e182c66
parentf323709af2cfbb5e80a59f706eda00b4161a6b79 (diff)
downloadcuttlefish-076214b0627adb20e2d4d5c9a3ff7561d3333e1d.tar.gz
Revert "[Bug] Fixed Crash in Modem Simulator by Replacing FATAL with ERROR"
This reverts commit e6dd34fb81858a276a2de32216b90931cd8f476c. Reason for revert: There is a better fix. Bug: 315167296 Test: TreeHugger (cherry picked from https://android-review.googlesource.com/q/commit:d8850bdebc0fdb7116ac06bbe72f16e44e11a1de) Merged-In: I3c3dc708cb4cafe3adcf63cbebdff0ce66f7b386 Change-Id: I3c3dc708cb4cafe3adcf63cbebdff0ce66f7b386
-rw-r--r--host/commands/modem_simulator/modem_simulator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/commands/modem_simulator/modem_simulator.cpp b/host/commands/modem_simulator/modem_simulator.cpp
index 7610b0f29..ed657ab06 100644
--- a/host/commands/modem_simulator/modem_simulator.cpp
+++ b/host/commands/modem_simulator/modem_simulator.cpp
@@ -43,7 +43,7 @@ ModemSimulator::~ModemSimulator() {
void ModemSimulator::LoadNvramConfig() {
auto nvram_config = NvramConfig::Get();
if (!nvram_config) {
- LOG(ERROR) << "Failed to obtain nvram config singleton";
+ LOG(FATAL) << "Failed to obtain nvram config singleton";
return;
}
}