Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1427)

Unified Diff: mojo/shell/runner/init.cc

Issue 1835653002: Turn on standard logging details in Mojo app runners (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/mash/mash_runner.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/runner/init.cc
diff --git a/mojo/shell/runner/init.cc b/mojo/shell/runner/init.cc
index 6f61cc83e9417093ce5829130fcd93fc6b5e2e59..57eb312392e02b534835b1c1201ba19255196c5d 100644
--- a/mojo/shell/runner/init.cc
+++ b/mojo/shell/runner/init.cc
@@ -32,10 +32,10 @@ void InitializeLogging() {
settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
logging::InitLogging(settings);
// To view log output with IDs and timestamps use "adb logcat -v threadtime".
- logging::SetLogItems(false, // Process ID
- false, // Thread ID
- false, // Timestamp
- false); // Tick count
+ logging::SetLogItems(true, // Process ID
+ true, // Thread ID
+ true, // Timestamp
+ true); // Tick count
}
void WaitForDebuggerIfNecessary() {
« no previous file with comments | « chrome/app/mash/mash_runner.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698