diff options
author | Eric Gribkoff <ericgribkoff@google.com> | 2018-11-29 11:15:42 -0800 |
---|---|---|
committer | Eric Gribkoff <ericgribkoff@google.com> | 2018-11-29 11:15:42 -0800 |
commit | 3888f747b49037df4a995d8bf131ba0891f8c042 (patch) | |
tree | 1d74a1ea667ad8a1d3374a902ac2bca7a9db236a /src/core/lib | |
parent | 37ee7b664e7aca69952f76d6335a1ff899e0ef6f (diff) |
log fork compat message at INFO instead of ERROR
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/iomgr/fork_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/fork_posix.cc b/src/core/lib/iomgr/fork_posix.cc index e957bad73d..05ecd2a49b 100644 --- a/src/core/lib/iomgr/fork_posix.cc +++ b/src/core/lib/iomgr/fork_posix.cc @@ -60,7 +60,7 @@ void grpc_prefork() { } if (strcmp(grpc_get_poll_strategy_name(), "epoll1") != 0 && strcmp(grpc_get_poll_strategy_name(), "poll") != 0) { - gpr_log(GPR_ERROR, + gpr_log(GPR_INFO, "Fork support is only compatible with the epoll1 and poll polling " "strategies"); } |