| Index: remoting/host/chromoting_host.cc
|
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
|
| index 80cd8b594685894d44dd1eaaf090eada13a4a0fb..c65776632cf47c30cb534fad8bda14611536eb29 100644
|
| --- a/remoting/host/chromoting_host.cc
|
| +++ b/remoting/host/chromoting_host.cc
|
| @@ -8,10 +8,10 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| -#include "base/logging.h"
|
| #include "base/message_loop/message_loop_proxy.h"
|
| #include "build/build_config.h"
|
| #include "remoting/base/constants.h"
|
| +#include "remoting/base/logging.h"
|
| #include "remoting/host/chromoting_host_context.h"
|
| #include "remoting/host/desktop_environment.h"
|
| #include "remoting/host/host_config.h"
|
| @@ -117,7 +117,7 @@ void ChromotingHost::Start(const std::string& host_owner) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK(!started_);
|
|
|
| - LOG(INFO) << "Starting host";
|
| + LOG_INFO << "Starting host";
|
| started_ = true;
|
| FOR_EACH_OBSERVER(HostStatusObserver, status_observers_, OnStart(host_owner));
|
|
|
| @@ -287,7 +287,7 @@ void ChromotingHost::OnIncomingSession(
|
|
|
| *response = protocol::SessionManager::ACCEPT;
|
|
|
| - LOG(INFO) << "Client connected: " << session->jid();
|
| + LOG_INFO << "Client connected: " << session->jid();
|
|
|
| // Create a client object.
|
| scoped_ptr<protocol::ConnectionToClient> connection(
|
|
|