From 612fc034fa325b6348acf6e269953909dfccb58d Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Thu, 11 Apr 2019 20:54:29 +0200 Subject: [PATCH] remove debug --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index cee1c3e..4618d97 100644 --- a/src/connection.c +++ b/src/connection.c @@ -421,7 +421,7 @@ kore_connection_check_idletimer(u_int64_t now, struct connection *c) d = 0; if (d >= c->idle_timer.length) { - printf("%p idle for %" PRIu64 " ms, expiring\n", (void *)c, d); + kore_debug("%p idle for %" PRIu64 " ms, expiring", c, d); kore_connection_disconnect(c); } }