summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-08-12 00:02:40 +0200
committerAlexander Barton <alex@barton.de>2013-08-12 00:02:40 +0200
commit4828bae8d321c6a87a724092ef0f258db7cd7e50 (patch)
tree53febd310a36e70dbffa8339fa3a345a71fb4ec6 /src
parentcd38e9580e428103cef39e2e29f62472b2f336d3 (diff)
downloadngircd-4828bae8d321c6a87a724092ef0f258db7cd7e50.tar.gz
ngircd-4828bae8d321c6a87a724092ef0f258db7cd7e50.zip
Change log level of "SSL connection shutting down"
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index 86aeb652..53497e3b 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