Index: mojo/shell/init.cc |
diff --git a/mojo/shell/init.cc b/mojo/shell/init.cc |
deleted file mode 100644 |
index 481e5ee4a4dbdb007172f99bad0b9595429d2403..0000000000000000000000000000000000000000 |
--- a/mojo/shell/init.cc |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "mojo/shell/init.h" |
- |
-#include "base/logging.h" |
- |
-namespace mojo { |
-namespace shell { |
- |
-void InitializeLogging() { |
- logging::LoggingSettings settings; |
- 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 |
-} |
- |
-} // namespace shell |
-} // namespace mojo |