Merge pull request #1295 from deepak1556/app_patch

allow setting loglevel
This commit is contained in:
Cheng Zhao 2015-03-26 11:20:08 +08:00
commit 5c8f2d4e69
2 changed files with 31 additions and 2 deletions

View file

@ -27,8 +27,8 @@ AtomMainDelegate::~AtomMainDelegate() {
bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
// Disable logging out to debug.log on Windows
#if defined(OS_WIN)
logging::LoggingSettings settings;
#if defined(OS_WIN)
#if defined(DEBUG)
settings.logging_dest = logging::LOG_TO_ALL;
settings.log_file = L"debug.log";
@ -37,9 +37,11 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {
#else
settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
#endif
logging::InitLogging(settings);
#endif // defined(OS_WIN)
// allows setting loglevel --v or --vmodule
logging::InitLogging(settings);
// Logging with pid and timestamp.
logging::SetLogItems(true, false, true, false);

View file

@ -61,3 +61,30 @@ Like `--host-rules` but these `rules` only apply to the host resolver.
## --ignore-certificate-errors
Ignore certificate related errors.
## --v=`log_level`
Gives the default maximal active V-logging level; 0 is the default.
Normally positive values are used for V-logging levels.
-1 to disable logs
## --vmodule=`pattern`
Gives the per-module maximal V-logging levels to override the value
given by --v. E.g. "my_module=2,foo*=3" would change the logging
level for all code in source files "my_module.*" and "foo*.*"
("-inl" suffixes are also disregarded for this matching).
Any pattern containing a forward or backward slash will be tested
against the whole pathname and not just the module. E.g.,
"*/foo/bar/*=2" would change the logging level for all code in
source files under a "foo/bar" directory.
For example to disable all chromium related logs and only enable
your application logs
```
app.commandLine.appendSwitch('v', -1);
app.commandLine.appendSwitch('vmodule', 'console=0');
```