Index: remoting/host/plugin/host_script_object.cc |
diff --git a/remoting/host/plugin/host_script_object.cc b/remoting/host/plugin/host_script_object.cc |
index 542f7258d08dbf38b4fc00ec831a1b7030e8ba33..c443e9c461bd2dcecbb2a93c3df59021722be9db 100644 |
--- a/remoting/host/plugin/host_script_object.cc |
+++ b/remoting/host/plugin/host_script_object.cc |
@@ -13,6 +13,7 @@ |
#include "base/strings/utf_string_conversions.h" |
#include "remoting/base/auth_token_util.h" |
#include "remoting/base/auto_thread.h" |
+#include "remoting/base/logging.h" |
#include "remoting/base/resources.h" |
#include "remoting/base/rsa_key_pair.h" |
#include "remoting/host/chromoting_host_context.h" |
@@ -447,7 +448,7 @@ bool HostNPScriptObject::Connect(const NPVariant* args, |
NPVariant* result) { |
DCHECK(plugin_task_runner_->BelongsToCurrentThread()); |
- LOG(INFO) << "Connecting..."; |
+ HOST_LOG << "Connecting..."; |
if (arg_count != 2) { |
SetException("connect: bad number of arguments"); |
@@ -1104,7 +1105,7 @@ void HostNPScriptObject::SetException(const std::string& exception_string) { |
DCHECK(plugin_task_runner_->BelongsToCurrentThread()); |
g_npnetscape_funcs->setexception(parent_, exception_string.c_str()); |
- LOG(INFO) << exception_string; |
+ HOST_LOG << exception_string; |
} |
} // namespace remoting |