From c4a0e7bd9ac4994ad56c637945c55aeb8bfe2c9c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 1 Sep 2015 14:00:46 +0200 Subject: [PATCH] log tv_sec in call to yaz_poll --- src/eventl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/eventl.c b/src/eventl.c index 2e39b3a..40dfeb4 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -273,7 +273,8 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) fds[i].fd = p->fd; } assert(i == no_fds); - yaz_log(man->log_level, "yaz_poll begin nofds=%d", no_fds); + yaz_log(man->log_level, "yaz_poll begin tv_sec=%d nofds=%d", tv_sec, + no_fds); res = yaz_poll(fds, no_fds, tv_sec, 0); yaz_log(man->log_level, "yaz_poll returned res=%d", res); if (res < 0) -- 1.7.10.4