From: Adam Dickmeiss Date: Tue, 1 Sep 2015 12:00:46 +0000 (+0200) Subject: log tv_sec in call to yaz_poll X-Git-Tag: v1.12.3~11 X-Git-Url: http://git.indexdata.com/?p=pazpar2-moved-to-github.git;a=commitdiff_plain;h=c4a0e7bd9ac4994ad56c637945c55aeb8bfe2c9c log tv_sec in call to yaz_poll --- 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)