From 3d86f1101d468a7c3329b58fc5ba92adf2bebf35 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 25 Mar 2010 14:39:33 +0100 Subject: [PATCH] Remove two YLOG_DEBUG logs --- src/eventl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/eventl.c b/src/eventl.c index 8536694..e46684d 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -265,13 +265,11 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) if (FD_ISSET(p->fd, &in) || force_event == EVENT_INPUT) { p->last_event = now; - yaz_log(YLOG_DEBUG, "Eventl input event"); p->this_event |= EVENT_INPUT; } if (FD_ISSET(p->fd, &out) || force_event == EVENT_OUTPUT) { p->last_event = now; - yaz_log(YLOG_DEBUG, "Eventl output event"); p->this_event |= EVENT_OUTPUT; } if (FD_ISSET(p->fd, &except) || force_event == EVENT_EXCEPT) -- 1.7.10.4