Add ELECTRON_ENABLE_LOGGING env
It is the same with --enable-logging.
This commit is contained in:
parent
4005e65e28
commit
2c4a24d26b
1 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,9 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
|
||||||
#endif // !defined(OS_WIN)
|
#endif // !defined(OS_WIN)
|
||||||
|
|
||||||
// Only enable logging when --enable-logging is specified.
|
// Only enable logging when --enable-logging is specified.
|
||||||
if (!command_line->HasSwitch(switches::kEnableLogging)) {
|
scoped_ptr<base::Environment> env(base::Environment::Create());
|
||||||
|
if (!command_line->HasSwitch(switches::kEnableLogging) &&
|
||||||
|
!env->HasVar("ELECTRON_ENABLE_LOGGING")) {
|
||||||
settings.logging_dest = logging::LOG_NONE;
|
settings.logging_dest = logging::LOG_NONE;
|
||||||
logging::SetMinLogLevel(logging::LOG_NUM_SEVERITIES);
|
logging::SetMinLogLevel(logging::LOG_NUM_SEVERITIES);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue