From: Roger Dingledine Date: Tue, 21 Sep 2004 17:14:47 +0000 (+0000) Subject: slightly better warn message X-Git-Tag: tor-0.0.9pre1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff622786f1edf89c9ee3213d0762a98aa728cbed;p=thirdparty%2Ftor.git slightly better warn message svn:r2357 --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 4e58de20c0..1198c894f9 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -582,7 +582,7 @@ void router_mark_as_down(const char *digest) { return; log_fn(LOG_DEBUG,"Marking %s as down.",router->nickname); if (router_is_me(router)) - log_fn(LOG_WARN, "We just marked ourself as down."); + log_fn(LOG_WARN, "We just marked ourself as down. Are your external addresses reachable?"); router->is_running = 0; router->status_set_at = time(NULL); }