From: Roger Dingledine Date: Sun, 30 Jan 2005 23:52:47 +0000 (+0000) Subject: be less noisy about complaining when a jap client tries to connect X-Git-Tag: tor-0.1.0.1-rc~368 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d8659429e9c2868d2ae6dcbc780ec41a459abba;p=thirdparty%2Ftor.git be less noisy about complaining when a jap client tries to connect and we refuse him. svn:r3472 --- diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 3fdf5fc90b..dd678c04bb 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -345,7 +345,7 @@ connection_tls_finish_handshake(connection_t *conn) { connection_watch_events(conn, EV_READ); log_fn(LOG_DEBUG,"tls handshake done. verifying."); if (! tor_tls_peer_has_cert(conn->tls)) { - log_fn(LOG_WARN,"Peer didn't send a cert! Closing."); + log_fn(LOG_INFO,"Peer didn't send a cert! Closing."); /* XXX we should handle this case rather than just closing. */ return -1; }