summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-09-23 04:59:05 -0400
committerRoger Dingledine <arma@torproject.org>2009-09-23 04:59:05 -0400
commiteed5cae9d167f73d75cab239f9e2013bb40e0ff8 (patch)
tree241b34dfd6f7fe9b51e70ce29a62d9efb7ed95f3
parent2d906e65549469b2a3bab0bb741ad4460bca66f0 (diff)
downloadtor-eed5cae9d167f73d75cab239f9e2013bb40e0ff8.tar.gz
tor-eed5cae9d167f73d75cab239f9e2013bb40e0ff8.zip
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.
-rw-r--r--src/or/dirserv.c6
1 files 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;
}