]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
don't warn so loudly when we couldn't load the unverified-consensus
authorRoger Dingledine <arma@torproject.org>
Sat, 27 Oct 2007 10:40:08 +0000 (10:40 +0000)
committerRoger Dingledine <arma@torproject.org>
Sat, 27 Oct 2007 10:40:08 +0000 (10:40 +0000)
file. we can live without it.

svn:r12221

src/or/networkstatus.c

index 539f128eaf3722203232ba19e0053b622cf6e913..ac8949ff4672b4f572e2a139f4a88acc68d98b15 100644 (file)
@@ -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);