| Index: remoting/host/setup/me2me_native_messaging_host.cc
|
| diff --git a/remoting/host/setup/me2me_native_messaging_host.cc b/remoting/host/setup/me2me_native_messaging_host.cc
|
| index 59ceadcf231ad9c407add0453832bfaee0343baa..50707350343e1a5de6c062e23a9535a2ee25c6f2 100644
|
| --- a/remoting/host/setup/me2me_native_messaging_host.cc
|
| +++ b/remoting/host/setup/me2me_native_messaging_host.cc
|
| @@ -261,13 +261,13 @@ void Me2MeNativeMessagingHost::ProcessGetPinHash(
|
|
|
| std::string host_id;
|
| if (!message->GetString("hostId", &host_id)) {
|
| - LOG(ERROR) << "'hostId' not found: " << message;
|
| + LOG(ERROR) << "'hostId' not found: " << message.get();
|
| OnError();
|
| return;
|
| }
|
| std::string pin;
|
| if (!message->GetString("pin", &pin)) {
|
| - LOG(ERROR) << "'pin' not found: " << message;
|
| + LOG(ERROR) << "'pin' not found: " << message.get();
|
| OnError();
|
| return;
|
| }
|
|
|