From aa66d14602636d575b003607d617a0f588de7aeb Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 26 May 2019 15:13:41 +0100 Subject: [PATCH] <= -> >= --- core/src/main/groovy/com/muwire/core/util/JULLog.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/groovy/com/muwire/core/util/JULLog.groovy b/core/src/main/groovy/com/muwire/core/util/JULLog.groovy index 81764603..facaefbc 100644 --- a/core/src/main/groovy/com/muwire/core/util/JULLog.groovy +++ b/core/src/main/groovy/com/muwire/core/util/JULLog.groovy @@ -55,21 +55,21 @@ class JULLog extends Log { @Override public boolean shouldDebug() { - level.intValue().intValue() <= Level.FINE.intValue() + level.intValue().intValue() >= Level.FINE.intValue() } @Override public boolean shouldInfo() { - level.intValue().intValue() <= Level.INFO.intValue() + level.intValue().intValue() >= Level.INFO.intValue() } @Override public boolean shouldWarn() { - level.intValue().intValue() <= Level.WARNING.intValue() + level.intValue().intValue() >= Level.WARNING.intValue() } @Override public boolean shouldError() { - level.intValue().intValue() <= Level.SEVERE.intValue() + level.intValue().intValue() >= Level.SEVERE.intValue() } }