aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/server
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2016-02-01 10:53:13 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2016-02-01 10:53:13 -0800
commit369a04ace686d2db7fff8a39473680566da6700a (patch)
tree1910641c472f2435b6b10b096dc798b19c6ad2df /src/cpp/server
parent3075c810280b797b5c932c38e0382633cfe3774c (diff)
Address code review comments
Diffstat (limited to 'src/cpp/server')
-rw-r--r--src/cpp/server/server_context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/server/server_context.cc b/src/cpp/server/server_context.cc
index 4a5ac5af92..e205a1969b 100644
--- a/src/cpp/server/server_context.cc
+++ b/src/cpp/server/server_context.cc
@@ -177,7 +177,7 @@ void ServerContext::TryCancel() const {
grpc_call_error err = grpc_call_cancel_with_status(
call_, GRPC_STATUS_CANCELLED, "Cancelled on the server side", NULL);
if (err != GRPC_CALL_OK) {
- gpr_log(GPR_INFO, "TryCancel failed with: %d", err);
+ gpr_log(GPR_ERROR, "TryCancel failed with: %d", err);
}
}