]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
slightly better warn message
authorRoger Dingledine <arma@torproject.org>
Tue, 21 Sep 2004 17:14:47 +0000 (17:14 +0000)
committerRoger Dingledine <arma@torproject.org>
Tue, 21 Sep 2004 17:14:47 +0000 (17:14 +0000)
svn:r2357

src/or/routerlist.c

index 4e58de20c0eb751e3fe410303f484c106ba2364f..1198c894f9ff7832cf21c36cf3809c00c1ea3d60 100644 (file)
@@ -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);
 }