From: Josh Allmann Date: Thu, 6 Oct 2016 01:25:40 +0000 (-0400) Subject: FS-8075 [mod_hiredis]: Reduce log level of a message. X-Git-Tag: v1.8.0~1197^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8d6c4a8054afca862f5ca7c29b41584ffa94a83;p=thirdparty%2Ffreeswitch.git FS-8075 [mod_hiredis]: Reduce log level of a message. --- diff --git a/src/mod/applications/mod_hiredis/hiredis_profile.c b/src/mod/applications/mod_hiredis/hiredis_profile.c index f4394ec0cc..8d71f59bb1 100644 --- a/src/mod/applications/mod_hiredis/hiredis_profile.c +++ b/src/mod/applications/mod_hiredis/hiredis_profile.c @@ -83,7 +83,7 @@ static hiredis_context_t *hiredis_connection_get_context(hiredis_connection_t *c return NULL; } } else { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "hiredis: recycled from pool[%s, %d]\n", conn->host, conn->port); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "hiredis: recycled from pool[%s, %d]\n", conn->host, conn->port); return context; } } else {