From eed5cae9d167f73d75cab239f9e2013bb40e0ff8 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 23 Sep 2009 04:59:05 -0400 Subject: [PATCH] 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. --- src/or/dirserv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.47.3