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.
This commit is contained in:
Roger Dingledine 2009-09-23 04:59:05 -04:00
parent 2d906e6554
commit eed5cae9d1

View 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;
}