Module: ngircd.git Branch: master Commit: 4828bae8d321c6a87a724092ef0f258db7cd7e50 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=4828b...
Author: Alexander Barton alex@barton.de Date: Mon Aug 12 00:02:40 2013 +0200
Change log level of "SSL connection shutting down"
---
src/ngircd/conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 86aeb65..53497e3 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -1228,7 +1228,7 @@ Conn_Close( CONN_ID Idx, const char *LogMsg, const char *FwdMsg, bool InformClie c = Conn_GetClient( Idx ); #ifdef SSL_SUPPORT if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_SSL )) { - Log(LOG_INFO, "SSL connection %d shutting down ...", Idx); + LogDebug("SSL connection %d shutting down ...", Idx); ConnSSL_Free(&My_Connections[Idx]); } #endif
ngircd-commits@lists.barton.de