aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-01-04 02:25:18 +0000
committerRoger Dingledine <arma@torproject.org>2005-01-04 02:25:18 +0000
commit1f3e77bf92cda37e1123bc5e0c28d411c2036be6 (patch)
tree0d226e40be656b956906d3aafee1f45279d2befd
parent82c5381ecb2237326a4e6ccae37413754368387e (diff)
downloadtor-1f3e77bf92cda37e1123bc5e0c28d411c2036be6.tar.gz
tor-1f3e77bf92cda37e1123bc5e0c28d411c2036be6.zip
make the initial temp log only notice-err, not info-err
svn:r3274
-rw-r--r--src/common/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c
index 2b0c2cc65a..13a012f678 100644
--- a/src/common/log.c
+++ b/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;
}