Return dropped messages log to INFO level

CASSANDRA-9793 accidentally changed the logging level to ERROR
This commit is contained in:
Tyler Hobbs 2015-08-07 11:43:51 -05:00
parent e8f2cb50f7
commit 4d1b8b4186
1 changed files with 1 additions and 1 deletions

View File

@ -920,7 +920,7 @@ public final class MessagingService implements MessagingServiceMBean
{
List<String> logs = getDroppedMessagesLogs();
for (String log : logs)
logger.error(log);
logger.info(log);
if (logs.size() > 0)
StatusLogger.log();