summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-15 22:08:37 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-15 22:08:37 +0000
commit4d380ea90200e6daac7560ce9a9b565467872fc0 (patch)
tree1a5e5c2c239fe66c4e4b8bdf96ebc59857e162e5
parent067ff248a911ceab4508104dff858e84c722d3ec (diff)
downloadtor-4d380ea90200e6daac7560ce9a9b565467872fc0.tar.gz
tor-4d380ea90200e6daac7560ce9a9b565467872fc0.zip
quiet a -l info that should be -l debug
svn:r1634
-rw-r--r--src/common/tortls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index ae683700c0..4f6ee2146f 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -361,7 +361,7 @@ tor_tls_write(tor_tls *tls, char *cp, int n)
if(tls->wantwrite_n) {
/* if WANTWRITE last time, we must use the _same_ n as before */
assert(n >= tls->wantwrite_n);
- log_fn(LOG_INFO,"resuming pending-write, (%d to flush, reusing %d)",
+ log_fn(LOG_DEBUG,"resuming pending-write, (%d to flush, reusing %d)",
n, tls->wantwrite_n);
n = tls->wantwrite_n;
tls->wantwrite_n = 0;