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

Unified Diff: ppapi/native_client/src/trusted/plugin/service_runtime.cc

Issue 8929022: reduce log verbosity level (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: made logging detail levels match Created 9 years 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 | « ppapi/native_client/src/trusted/plugin/plugin.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/trusted/plugin/service_runtime.cc
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
index ad1fbcf1d34419100bf02a435270f632298de0c1..e85cf4acf0a32a12d189228dc61783db69ace65e 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
@@ -121,14 +121,14 @@ void PluginReverseInterface::DoPostMessage(nacl::string message) {
}
void PluginReverseInterface::StartupInitializationComplete() {
- NaClLog(0, "PluginReverseInterface::StartupInitializationComplete\n");
+ NaClLog(4, "PluginReverseInterface::StartupInitializationComplete\n");
if (init_done_cb_.pp_completion_callback().func != NULL) {
- NaClLog(0,
+ NaClLog(4,
"PluginReverseInterface::StartupInitializationComplete:"
" invoking CB\n");
pp::Module::Get()->core()->CallOnMainThread(0, init_done_cb_, PP_OK);
} else {
- NaClLog(0,
+ NaClLog(1,
"PluginReverseInterface::StartupInitializationComplete:"
" init_done_cb_ not valid, skipping.\n");
}
@@ -362,12 +362,12 @@ void PluginReverseInterface::CloseManifestEntry_MainThreadContinuation(
}
void PluginReverseInterface::ReportCrash() {
- NaClLog(0, "PluginReverseInterface::ReportCrash\n");
+ NaClLog(4, "PluginReverseInterface::ReportCrash\n");
if (crash_cb_.pp_completion_callback().func != NULL) {
- NaClLog(0, "PluginReverseInterface::ReportCrash: invoking CB\n");
+ NaClLog(4, "PluginReverseInterface::ReportCrash: invoking CB\n");
pp::Module::Get()->core()->CallOnMainThread(0, crash_cb_, PP_OK);
} else {
- NaClLog(0,
+ NaClLog(1,
"PluginReverseInterface::ReportCrash:"
" crash_cb_ not valid, skipping\n");
}
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/plugin.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698