aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Nathan <ralphnathan@google.com>2016-04-13 13:42:07 -0700
committerRalph Nathan <ralphnathan@google.com>2016-04-13 13:42:07 -0700
commit9419e66f14a093fc18a32fde20daa66cca450453 (patch)
treebb44a86f737d562fa0f4709b783e174aa63fd30a
parentbce6fbc44bcca5ae6dd6fdf36f08db835a45b2ab (diff)
downloadwebservd-9419e66f14a093fc18a32fde20daa66cca450453.tar.gz
libwebservd: Use toString8 when logging binder::Status
BUG=28171901 Change-Id: I9af9b29cd0e76f6fbf31c0d1f0957c341ed83494
-rw-r--r--libwebserv/binder_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libwebserv/binder_server.cc b/libwebserv/binder_server.cc
index cd55804..3cce096 100644
--- a/libwebserv/binder_server.cc
+++ b/libwebserv/binder_server.cc
@@ -183,7 +183,7 @@ class BinderProtocolHandler : public ProtocolHandler {
Status status = handler->GetCertificateFingerprint(&result);
if (!status.isOk()) {
LOG(WARNING) << "Could not get certificate fingerprint "
- << "from protocol handler: " << status;
+ << "from protocol handler: " << status.toString8();
} else if (!result.empty()) {
break;
}