Browse Source

make the initial temp log only notice-err, not info-err

svn:r3274
Roger Dingledine 21 years ago
parent
commit
1f3e77bf92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/log.c

+ 1 - 1
src/common/log.c

@@ -337,7 +337,7 @@ void add_stream_log(int loglevelMin, int loglevelMax, const char *name, FILE *st
  */
 void add_temp_log(void)
 {
-  add_stream_log(LOG_INFO, LOG_ERR, "<temp>", stdout);
+  add_stream_log(LOG_NOTICE, LOG_ERR, "<temp>", stdout);
   logfiles->is_temporary = 1;
 }