Change log level of "SSL connection shutting down"

This commit is contained in:
Alexander Barton 2013-08-12 00:02:40 +02:00
parent cd38e9580e
commit 4828bae8d3
1 changed files with 1 additions and 1 deletions

View File

@ -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