aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/server.c
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-05-26 10:53:21 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-05-26 10:53:21 -0700
commitb10ab57a88d030ffd2740162cdc2c99a32089a6d (patch)
tree677bf2c7567078360c1702d7e5e016967a047bbf /src/core/surface/server.c
parentbd024536e5dbc0f2a20210a6ee8438bcf393793c (diff)
parent592dfaed87ef953b22b1e48b64ae51ad915b5af9 (diff)
Merge branch 'master' of github.com:grpc/grpc into server_auth_context
Diffstat (limited to 'src/core/surface/server.c')
-rw-r--r--src/core/surface/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/server.c b/src/core/surface/server.c
index 9b0f43a867..82386b10bb 100644
--- a/src/core/surface/server.c
+++ b/src/core/surface/server.c
@@ -665,7 +665,7 @@ void *grpc_server_register_method(grpc_server *server, const char *method,
const char *host) {
registered_method *m;
if (!method) {
- gpr_log(GPR_ERROR, "%s method string cannot be NULL", __FUNCTION__);
+ gpr_log(GPR_ERROR, "grpc_server_register_method method string cannot be NULL");
return NULL;
}
for (m = server->registered_methods; m; m = m->next) {