Chromium Code Reviews| 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..8640ca8106a63ba3a39f230ed6c45930e08910a4 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(4, |
|
sehr (please use chromium)
2011/12/15 01:37:51
change to match the above warning level.
bsy
2011/12/15 01:39:41
Done.
|
| "PluginReverseInterface::ReportCrash:" |
| " crash_cb_ not valid, skipping\n"); |
| } |