diff options
author | Roger Dingledine <arma@torproject.org> | 2007-10-27 10:40:08 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-10-27 10:40:08 +0000 |
commit | a92b2083d2617caa6deec03aea6bb6de57d68a0c (patch) | |
tree | 4172156be20df22b174f260f4ca579dcea263435 /src/or | |
parent | 5f54a9f7f664e8218d84d3f486e56e5f1f5737ff (diff) | |
download | tor-a92b2083d2617caa6deec03aea6bb6de57d68a0c.tar tor-a92b2083d2617caa6deec03aea6bb6de57d68a0c.tar.gz |
don't warn so loudly when we couldn't load the unverified-consensus
file. we can live without it.
svn:r12221
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/networkstatus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 539f128ea..ac8949ff4 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); |