From 6aeba2dd467476839619f539501ab0481998d428 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 15 Apr 2004 22:08:37 +0000 Subject: [PATCH] quiet a -l info that should be -l debug svn:r1634 --- trunk/src/common/tortls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/common/tortls.c b/trunk/src/common/tortls.c index ae683700c0..4f6ee2146f 100644 --- a/trunk/src/common/tortls.c +++ b/trunk/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;