]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
downgrade a log notice at startup
authorRoger Dingledine <arma@torproject.org>
Wed, 23 Sep 2009 08:59:05 +0000 (04:59 -0400)
committerRoger Dingledine <arma@torproject.org>
Wed, 23 Sep 2009 08:59:05 +0000 (04:59 -0400)
This was the only log notice that happened during other
tor invocations, like --verify-config and --list-fingerprint.
Plus, now we think it works, so no need to hear about it.

src/or/dirserv.c

index f6aef01e851845493800c8548bf1104a4c7435ae..1f4049bd54ecd2328bb23a1489aef47f693413ff 100644 (file)
@@ -2390,9 +2390,9 @@ dirserv_read_measured_bandwidths(const char *from_file,
   }
 
   fclose(fp);
-  log_notice(LD_DIRSERV,
-             "Bandwidth measurement file successfully read. "
-             "Applied %d measurements.", applied_lines);
+  log_info(LD_DIRSERV,
+           "Bandwidth measurement file successfully read. "
+           "Applied %d measurements.", applied_lines);
   return 0;
 }