diff options
author | Roger Dingledine <arma@torproject.org> | 2005-11-14 04:39:49 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-11-14 04:39:49 +0000 |
commit | 4ea6d71a26419d84489731ac63c896af4a86991a (patch) | |
tree | 5651ad003d47fbf40f2852796578ad4edf3fa368 | |
parent | 6fc30a65fd54ab09b1cdd28b54d3a43b06916df5 (diff) | |
download | tor-4ea6d71a26419d84489731ac63c896af4a86991a.tar.gz tor-4ea6d71a26419d84489731ac63c896af4a86991a.zip |
shorten more of the startup log messages
svn:r5368
-rw-r--r-- | src/or/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index d3bccca0a2..1bda2c0234 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -547,12 +547,12 @@ directory_info_has_arrived(time_t now, int from_cache) or_options_t *options = get_options(); if (!router_have_minimum_dir_info()) { - notice(LD_DIR, "I learned some more directory information, but not enough to build a circuit."); + log(LOG_NOTICE, LD_DIR, "I learned some more directory information, but not enough to build a circuit."); return; } if (!has_fetched_directory) { - notice(LD_DIR, "We have enough directory information to build circuits."); + log(LOG_NOTICE, LD_DIR, "We have enough directory information to build circuits."); } has_fetched_directory=1; |