From 1ebbaf5c3aa880d7ce2268c61e79bf0b52dd6a07 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 5 Oct 2005 20:45:18 +0000 Subject: improve INFO-level logging for directory downloads. This is still too chatty, but it will help us analyze things. svn:r5197 --- src/or/directory.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/or/directory.c') diff --git a/src/or/directory.c b/src/or/directory.c index 729bd86a8d..ba6e5234b8 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1633,13 +1633,13 @@ dir_routerdesc_download_failed(smartlist_t *failed) } } if (rs->next_attempt_at == 0) - log_fn(LOG_INFO, "%s failed %d time(s); I'll try again immediately.", + log_fn(LOG_DEBUG, "%s failed %d time(s); I'll try again immediately.", cp, (int)rs->n_download_failures); else if (rs->next_attempt_at < TIME_MAX) - log_fn(LOG_INFO, "%s failed %d time(s); I'll try again in %d seconds.", + log_fn(LOG_DEBUG, "%s failed %d time(s); I'll try again in %d seconds.", cp, (int)rs->n_download_failures, (int)(rs->next_attempt_at-now)); else - log_fn(LOG_INFO, "%s failed %d time(s); Giving up for a while.", + log_fn(LOG_DEBUG, "%s failed %d time(s); Giving up for a while.", cp, (int)rs->n_download_failures); }); -- cgit v1.2.3-54-g00ecf