From: Roger Dingledine Date: Wed, 23 Sep 2009 08:59:05 +0000 (-0400) Subject: downgrade a log notice at startup X-Git-Tag: tor-0.2.2.4-alpha~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eed5cae9d167f73d75cab239f9e2013bb40e0ff8;p=thirdparty%2Ftor.git downgrade a log notice at startup 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. --- diff --git a/src/or/dirserv.c b/src/or/dirserv.c index f6aef01e85..1f4049bd54 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -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; }