diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-18 19:16:17 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-18 19:16:17 +0000 |
commit | 5fe18894b9383b66f879681b8b3ee5d2dabf6257 (patch) | |
tree | ac24764117cd2572fda17a403447ca63c61a89cf /src | |
parent | e8a1b1d6a09b38671efcdb20c317f631f4d2810c (diff) | |
download | tor-5fe18894b9383b66f879681b8b3ee5d2dabf6257.tar.gz tor-5fe18894b9383b66f879681b8b3ee5d2dabf6257.zip |
now that we're recommending 0.1.1.x-alpha for win32 and os x users,
stop printing debug stuff once a minute
svn:r4596
Diffstat (limited to 'src')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index 7c9e2029ec..dd50d240ef 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -872,8 +872,10 @@ second_elapsed_callback(int fd, short event, void *args) current_second = now.tv_sec; /* remember which second it is, for next time */ +#if 0 if (current_second % 60 == 0) dumpmemusage(get_min_log_level()<LOG_INFO ? get_min_log_level() : LOG_INFO); +#endif if (evtimer_add(timeout_event, &one_second)) log_fn(LOG_ERR, |