Added usec debug in another area for debug

This commit is contained in:
Mark Ellzey 2011-08-11 12:06:54 -05:00
parent ac43ce0450
commit 3baab0dce9

View File

@ -2348,7 +2348,7 @@ timeout_next(struct event_base *base, struct timeval **tv_p)
EVUTIL_ASSERT(tv->tv_sec >= 0); EVUTIL_ASSERT(tv->tv_sec >= 0);
EVUTIL_ASSERT(tv->tv_usec >= 0); EVUTIL_ASSERT(tv->tv_usec >= 0);
event_debug(("timeout_next: in %d seconds", (int)tv->tv_sec)); event_debug(("timeout_next: in %d seconds, %d useconds", (int)tv->tv_sec, (int)tv->tv_usec));
out: out:
return (res); return (res);