diff options
author | Roger Dingledine <arma@torproject.org> | 2009-09-23 04:59:05 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-09-23 04:59:05 -0400 |
commit | eed5cae9d167f73d75cab239f9e2013bb40e0ff8 (patch) | |
tree | 241b34dfd6f7fe9b51e70ce29a62d9efb7ed95f3 /src/or | |
parent | 2d906e65549469b2a3bab0bb741ad4460bca66f0 (diff) | |
download | tor-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.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/dirserv.c | 6 |
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; } |