From c9622100910b5393ed9169887f73a663e0bb40b9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 9 Apr 2010 13:19:09 +0200 Subject: [PATCH] Log events on connections with no clients attach --- src/connection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connection.c b/src/connection.c index 8d0d480..260196c 100644 --- a/src/connection.c +++ b/src/connection.c @@ -251,6 +251,7 @@ static void connection_handler(IOCHAN iochan, int event) /* no client associated with it.. We are probably getting a closed connection from the target.. Or, perhaps, an unexpected package.. We will just close the connection */ + yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event); connection_destroy(co); return; } -- 1.7.10.4