Commit Diff
Diff:
cd38e9580e428103cef39e2e29f62472b2f336d3
4828bae8d321c6a87a724092ef0f258db7cd7e50
Commit:
4828bae8d321c6a87a724092ef0f258db7cd7e50
Tree:
53febd310a36e70dbffa8339fa3a345a71fb4ec6
Author:
Alexander Barton <alex@barton.de>
Committer:
Alexander Barton <alex@barton.de>
Date:
Sun Aug 11 22:02:40 2013 UTC
Message:
Change log level of "SSL connection shutting down"
blob - 86aeb6524d4dc13382d23dd6b6d5bf386a57d4b5
blob + 53497e3bfe33fd217784da97e6be071c869dcb09
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
@@ -1228,7 +1228,7 @@ Conn_Close( CONN_ID Idx, const char *LogMsg, const cha
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
IRCNow