Fixes #675 - Slf4jLog.ignore() now logs at DEBUG level

This commit is contained in:
Joakim Erdfelt 2016-06-29 15:10:01 -07:00
parent 2dfb5f463a
commit d13d3cc3f5
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public class Slf4jLog extends AbstractLogger
{ {
if (Log.isIgnored()) if (Log.isIgnored())
{ {
warn(Log.IGNORED, ignored); debug(Log.IGNORED, ignored);
} }
} }