fix: fail non-fatally when InitLogging fails (#35138)
This commit is contained in:
parent
53cd23159e
commit
3d4d1b33ba
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ void InitElectronLogging(const base::CommandLine& command_line,
|
|||
: APPEND_TO_OLD_LOG_FILE;
|
||||
bool success = InitLogging(settings);
|
||||
if (!success) {
|
||||
PLOG(FATAL) << "Failed to init logging";
|
||||
PLOG(ERROR) << "Failed to init logging";
|
||||
}
|
||||
|
||||
SetLogItems(true /* pid */, false, true /* timestamp */, false);
|
||||
|
|
Loading…
Reference in a new issue