diff options
author | Roger Dingledine <arma@torproject.org> | 2005-09-10 20:40:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-09-10 20:40:16 +0000 |
commit | b0a5ba424881c8e1025bbe0d6a928e7b05aa17ae (patch) | |
tree | 8c9113d22f1b6f82112e39331db5402e88fe347b /src | |
parent | 7a61dbed77765fe6b71c4f1439cf6553b8e887f4 (diff) | |
download | tor-b0a5ba424881c8e1025bbe0d6a928e7b05aa17ae.tar.gz tor-b0a5ba424881c8e1025bbe0d6a928e7b05aa17ae.zip |
downgrade the dirserver log messages when whining about unreachability
svn:r4991
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index d7bf5fbaca..8afa9f853b 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1020,11 +1020,11 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg) dirserv_thinks_router_is_blatantly_unreachable(router, time(NULL))) { if (router->num_unreachable_notifications >= 3) { unreachable = 1; - log_fn(LOG_WARN, "Notifying server '%s' that it's unreachable. (ContactInfo '%s', platform '%s').", + log_fn(LOG_NOTICE, "Notifying server '%s' that it's unreachable. (ContactInfo '%s', platform '%s').", router->nickname, router->contact_info ? router->contact_info : "", router->platform ? router->platform : ""); } else { - log_fn(LOG_NOTICE,"'%s' may be unreachable -- the %d previous descriptors were thought to be unreachable.", router->nickname, router->num_unreachable_notifications); + log_fn(LOG_INFO,"'%s' may be unreachable -- the %d previous descriptors were thought to be unreachable.", router->nickname, router->num_unreachable_notifications); router->num_unreachable_notifications++; } } |