소스 검색

don't freak people out as much with the warning message

svn:r1378
Roger Dingledine 21 년 전
부모
커밋
f796957182
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -501,7 +501,7 @@ int getconfig(int argc, char **argv, or_options_t *options) {
   cf = config_open(fname);
   if(!cf) {
     if(using_default_torrc == 1) {
-      log(LOG_WARN, "Configuration file '%s' not found. Using defaults.",fname);
+      log(LOG_WARN, "Configuration file '%s' not found, using defaults (this is fine).",fname);
       /* XXX change this WARN to INFO once we start using this feature */
       if(config_assign_default(options) < 0)
         return -1;