mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Improve the "we have been waiting for 1140377851 seconds" log
svn:r6046
This commit is contained in:
parent
d902143a75
commit
c4f389420c
@ -3449,11 +3449,18 @@ update_router_descriptor_client_downloads(time_t now)
|
||||
} else {
|
||||
should_delay = (last_routerdesc_download_attempted +
|
||||
MAX_CLIENT_INTERVAL_WITHOUT_REQUEST) > now;
|
||||
if (!should_delay)
|
||||
if (!should_delay) {
|
||||
if (last_routerdesc_download_attempted) {
|
||||
log_info(LD_DIR,
|
||||
"There are not many downloadable routerdescs, but we've "
|
||||
"been waiting long enough (%d seconds). Downloading.",
|
||||
(int)(now-last_routerdesc_download_attempted));
|
||||
} else {
|
||||
log_info(LD_DIR,
|
||||
"There are not many downloadable routerdescs, but we've "
|
||||
"never downloaded descriptors before. Downloading.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (! should_delay) {
|
||||
|
Loading…
Reference in New Issue
Block a user