diff options
author | Roger Dingledine <arma@torproject.org> | 2005-11-17 22:19:35 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-11-17 22:19:35 +0000 |
commit | 9111a3fb48940dd53757c05bb57c6522a6f25025 (patch) | |
tree | 95b181bd16c7d582ac687876d124765281467b57 | |
parent | d2b93df26cc217829c3f475893ff5a8ed266fafd (diff) | |
download | tor-9111a3fb48940dd53757c05bb57c6522a6f25025.tar tor-9111a3fb48940dd53757c05bb57c6522a6f25025.tar.gz |
comment out some really popular log lines
svn:r5415
-rw-r--r-- | src/or/routerlist.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 10e22fd99..ba86f6133 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3016,6 +3016,7 @@ router_list_downloadable(void) }); } +#if 0 info(LD_DIR, "%d router descriptors are downloadable; " "%d are up to date; %d are in progress; " "%d are not ready to retry; " @@ -3028,6 +3029,7 @@ router_list_downloadable(void) n_downloadable, n_uptodate, n_in_progress, n_not_ready, n_obsolete, n_skip_old, xx_n_unrecognized, xx_n_extra_new, xx_n_both, xx_n_unrec_old); +#endif if (!n_downloadable) return superseded; @@ -3092,9 +3094,9 @@ update_router_descriptor_downloads(time_t now) should_delay = (last_routerdesc_download_attempted + MAX_CLIENT_INTERVAL_WITHOUT_REQUEST) > now; } - if (should_delay) - debug(LD_DIR, "There are not many downloadable routerdescs; waiting till we have some more."); - else + if (should_delay) { +// debug(LD_DIR, "There are not many downloadable routerdescs; waiting till we have some more."); + } else 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)); } |