summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/chrome_launcher.cc')
-rw-r--r--chrome_frame/chrome_launcher.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome_frame/chrome_launcher.cc b/chrome_frame/chrome_launcher.cc
index 31d404e..7646a66 100644
--- a/chrome_frame/chrome_launcher.cc
+++ b/chrome_frame/chrome_launcher.cc
@@ -87,6 +87,9 @@ bool SanitizeAndLaunchChrome(const wchar_t* command_line) {
CommandLine sanitized(GetChromeExecutablePath());
SanitizeCommandLine(original, &sanitized);
+ DLOG(INFO) << sanitized.command_line_string();
+ sanitized.AppendSwitchWithValue("log-level", "0");
+
return base::LaunchApp(sanitized.command_line_string(), false, false, NULL);
}