From: Roger Dingledine Date: Sat, 27 Oct 2007 10:40:08 +0000 (+0000) Subject: don't warn so loudly when we couldn't load the unverified-consensus X-Git-Tag: tor-0.2.0.10-alpha~129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a92b2083d2617caa6deec03aea6bb6de57d68a0c;p=thirdparty%2Ftor.git don't warn so loudly when we couldn't load the unverified-consensus file. we can live without it. svn:r12221 --- diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 539f128eaf..ac8949ff46 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -176,7 +176,7 @@ router_reload_consensus_networkstatus(void) s = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL); if (s) { if (networkstatus_set_current_consensus(s, 1, 1)) { - log_warn(LD_FS, "Couldn't load consensus networkstatus from \"%s\"", + log_info(LD_FS, "Couldn't load consensus networkstatus from \"%s\"", filename); } tor_free(s);