summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
Diffstat (limited to 'mojo')
-rw-r--r--mojo/shell/runner/init.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/mojo/shell/runner/init.cc b/mojo/shell/runner/init.cc
index 6f61cc8..57eb312 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() {