kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 612fc034fa325b6348acf6e269953909dfccb58d
parent aa49e181b6269dcd298748bfe7bba0eebb6b9aea
Author: Joris Vink <joris@coders.se>
Date:   Thu, 11 Apr 2019 20:54:29 +0200

remove debug

Diffstat:
src/connection.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); } }