diff options
author | Eric Gribkoff <ericgribkoff@google.com> | 2018-11-30 08:05:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 08:05:52 -0800 |
commit | b88dfc227cd8c9ceeb7797b3265905a93880a077 (patch) | |
tree | 328fa35d34c9f8c1e428800c59a49ed48d50c3bf /src/core/lib | |
parent | 7ef8fc826c52b0c4abeaead633d464197fc0bdf8 (diff) | |
parent | 3888f747b49037df4a995d8bf131ba0891f8c042 (diff) |
Merge pull request #17341 from ericgribkoff/fork_info
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"); } |