mirror of https://github.com/apache/cassandra
Return dropped messages log to INFO level
CASSANDRA-9793 accidentally changed the logging level to ERROR
This commit is contained in:
parent
e8f2cb50f7
commit
4d1b8b4186
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue