commit e9ce1819550f40132c30433914ff95b212957db0 Author: Nick Mathewson nickm@torproject.org Date: Sun Nov 6 20:01:24 2016 -0500
Change a BUG warning to be a warning, not an info. --- src/or/directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/directory.c b/src/or/directory.c index afe5796..24490b7 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -3991,7 +3991,7 @@ download_status_increment_attempt(download_status_t *dls, const char *item, if (dls->increment_on == DL_SCHED_INCREMENT_FAILURE) { /* this schedule should retry on failure, and not launch any concurrent attempts */ - log_info(LD_BUG, "Tried to launch an attempt-based connection on a " + log_warn(LD_BUG, "Tried to launch an attempt-based connection on a " "failure-based schedule."); return TIME_MAX; }
tor-commits@lists.torproject.org