aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-04-06 12:59:23 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-04-06 12:59:23 -0700
commited73510413579bcaf07aea363da1dc238bcb8c4e (patch)
tree2a1ba4fe31df5cbbf65dd1610692f2f32095f97e /src
parentf9d53bbdd6d144d32ee1746fb2c3d40eb517196c (diff)
Small tweaks
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/iomgr/ev_posix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_posix.c b/src/core/lib/iomgr/ev_posix.c
index 973e40ca1e..79b5ceebe3 100644
--- a/src/core/lib/iomgr/ev_posix.c
+++ b/src/core/lib/iomgr/ev_posix.c
@@ -104,6 +104,7 @@ static void try_engine(const char *engine) {
for (size_t i = 0; i < GPR_ARRAY_SIZE(g_factories); i++) {
if (is(engine, g_factories[i].name)) {
if ((g_event_engine = g_factories[i].factory())) {
+ gpr_log(GPR_DEBUG, "Using polling engine: %s", g_factories[i].name);
return;
}
}