summaryrefslogtreecommitdiffstats
path: root/chrome/common/logging_chrome.cc
diff options
context:
space:
mode:
authorgauravsh@chromium.org <gauravsh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-01 06:07:55 +0000
committergauravsh@chromium.org <gauravsh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-01 06:07:55 +0000
commit51f5a60cca25f1dbf2e7c3c390c2688ede9f935d (patch)
tree392eb30e390d99e15617a380e0b0d362baa563da /chrome/common/logging_chrome.cc
parent3061c7077c6f1b5dc92c7bed0710228de40b7d85 (diff)
downloadchromium_src-51f5a60cca25f1dbf2e7c3c390c2688ede9f935d.zip
chromium_src-51f5a60cca25f1dbf2e7c3c390c2688ede9f935d.tar.gz
chromium_src-51f5a60cca25f1dbf2e7c3c390c2688ede9f935d.tar.bz2
Enable timestamps and disable tick counts in logs
Currently, logs include tick counts. Tick counts do not increment when the system is suspended or switched off. This makes the logs less useful on platforms like Chrome OS where it is harder (and sometimes impossible) to correlate them with logs from other system services. BUG=chromium:132366 TEST=visually inspect logs Review URL: https://chromiumcodereview.appspot.com/10855114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154603 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/logging_chrome.cc')
-rw-r--r--chrome/common/logging_chrome.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/logging_chrome.cc b/chrome/common/logging_chrome.cc
index 5ad8482..5959c1c 100644
--- a/chrome/common/logging_chrome.cc
+++ b/chrome/common/logging_chrome.cc
@@ -327,8 +327,8 @@ void InitChromeLogging(const CommandLine& command_line,
// we want process and thread IDs because we have a lot of things running
logging::SetLogItems(true, // enable_process_id
true, // enable_thread_id
- false, // enable_timestamp
- true); // enable_tickcount
+ true, // enable_timestamp
+ false); // enable_tickcount
// We call running in unattended mode "headless", and allow
// headless mode to be configured either by the Environment