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

Unified Diff: blimp/client/app/blimp_startup.cc

Issue 1840843005: blimp: Add logging for compositor and render widget feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a test. 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 | « no previous file | blimp/client/feature/compositor/blimp_compositor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/app/blimp_startup.cc
diff --git a/blimp/client/app/blimp_startup.cc b/blimp/client/app/blimp_startup.cc
index 0c2b6ecf833f13fdbfa07a10e64f88bd427f3e6b..006688335755f5f24ed20bad48e7bc15b714f6ea 100644
--- a/blimp/client/app/blimp_startup.cc
+++ b/blimp/client/app/blimp_startup.cc
@@ -37,8 +37,12 @@ void InitializeLogging() {
// TODO(haibinlu): Remove this before release.
// Enables a few verbose log by default.
if (!base::CommandLine::ForCurrentProcess()->HasSwitch("vmodule")) {
- base::CommandLine::ForCurrentProcess()->AppendSwitchASCII(
- "vmodule", "blimp_message_pump=1, blimp_connection=1");
+ std::string log_filter =
+ std::string("blimp_message_pump=1, blimp_connection=1,") +
+ std::string("blimp_compositor=1, blimp_compositor_manager=1,") +
+ std::string("remote_channel_impl=1");
+ base::CommandLine::ForCurrentProcess()->AppendSwitchASCII("vmodule",
+ log_filter);
}
logging::LoggingSettings settings;
« no previous file with comments | « no previous file | blimp/client/feature/compositor/blimp_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698