aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/is_epollexclusive_available.cc
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2018-02-16 10:30:36 -0800
committerGravatar Ken Payson <kpayson@google.com>2018-02-16 10:30:36 -0800
commit39921e9031b9a0cf950d6ef46a71de9ac85aab8b (patch)
treeb0f8af3b98d6073fa1231703af70ef1d2c52bcc4 /src/core/lib/iomgr/is_epollexclusive_available.cc
parent874f8128cde90bccf5979d49f83f8e8cf2b81bd1 (diff)
Lower debug logging on epollex
Diffstat (limited to 'src/core/lib/iomgr/is_epollexclusive_available.cc')
-rw-r--r--src/core/lib/iomgr/is_epollexclusive_available.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/iomgr/is_epollexclusive_available.cc b/src/core/lib/iomgr/is_epollexclusive_available.cc
index 542cc41e8f..c46674c1dd 100644
--- a/src/core/lib/iomgr/is_epollexclusive_available.cc
+++ b/src/core/lib/iomgr/is_epollexclusive_available.cc
@@ -37,7 +37,7 @@ bool grpc_is_epollexclusive_available(void) {
int fd = epoll_create1(EPOLL_CLOEXEC);
if (fd < 0) {
if (!logged_why_not) {
- gpr_log(GPR_ERROR,
+ gpr_log(GPR_DEBUG,
"epoll_create1 failed with error: %d. Not using epollex polling "
"engine.",
fd);
@@ -48,7 +48,7 @@ bool grpc_is_epollexclusive_available(void) {
int evfd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
if (evfd < 0) {
if (!logged_why_not) {
- gpr_log(GPR_ERROR,
+ gpr_log(GPR_DEBUG,
"eventfd failed with error: %d. Not using epollex polling "
"engine.",
fd);
@@ -80,7 +80,7 @@ bool grpc_is_epollexclusive_available(void) {
}
} else {
if (!logged_why_not) {
- gpr_log(GPR_ERROR,
+ gpr_log(GPR_DEBUG,
"epoll_ctl with EPOLLEXCLUSIVE | EPOLLONESHOT succeeded. This is "
"evidence of no EPOLLEXCLUSIVE support. Not using "
"epollex polling engine.");