소스 검색

clean up a lot message, and remove a line that does nothing.

svn:r5603
Roger Dingledine 20 년 전
부모
커밋
002c9b3589
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/or/routerlist.c

+ 2 - 2
src/or/routerlist.c

@@ -3342,9 +3342,9 @@ router_have_minimum_dir_info(void)
   }
   if (!res && have_enough) {
     log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date "
-        "enough to build circuits.");
+        "enough to build circuits.%s",
+        any_running ? "" : " (All servers seem down -- network down?)");
   }
-  have_enough = res;
   return res;
 }