mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
quiet debug logs from periodic_event_dispatch()
Stop blasting twelve lines per second from periodic_event_dispatch() at loglevel debug. Resolves ticket 18729; fix on 0.2.8.1-alpha.
This commit is contained in:
parent
967491f156
commit
d037369e56
3
changes/bug18729
Normal file
3
changes/bug18729
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor logging changes:
|
||||
- Stop blasting twelve lines per second from periodic_event_dispatch()
|
||||
at loglevel debug. Resolves ticket 18729; fix on 0.2.8.1-alpha.
|
@ -48,7 +48,7 @@ periodic_event_dispatch(evutil_socket_t fd, short what, void *data)
|
||||
|
||||
time_t now = time(NULL);
|
||||
const or_options_t *options = get_options();
|
||||
log_debug(LD_GENERAL, "Dispatching %s", event->name);
|
||||
// log_debug(LD_GENERAL, "Dispatching %s", event->name);
|
||||
int r = event->fn(now, options);
|
||||
int next_interval = 0;
|
||||
|
||||
@ -71,8 +71,8 @@ periodic_event_dispatch(evutil_socket_t fd, short what, void *data)
|
||||
next_interval = 1;
|
||||
}
|
||||
|
||||
log_debug(LD_GENERAL, "Scheduling %s for %d seconds", event->name,
|
||||
next_interval);
|
||||
// log_debug(LD_GENERAL, "Scheduling %s for %d seconds", event->name,
|
||||
// next_interval);
|
||||
struct timeval tv = { next_interval , 0 };
|
||||
event_add(event->ev, &tv);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user