very minor changes

Signed-off-by: Ceki Gulcu <ceki@qos.ch>
This commit is contained in:
Ceki Gulcu 2021-08-09 15:11:43 +02:00
parent cf4d011ac0
commit 280129046e
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,7 @@ public class FluentAPIUsage {
@Test
public void smokxce() {
String name = "smoke";
Logger logger = LoggerFactory.getLogger("aa");
Logger logger = LoggerFactory.getLogger(name);
assertFalse(logger.isEnabledForLevel(Level.DEBUG));
}

View File

@ -1,7 +1,6 @@
package org.slf4j.log4j12;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import org.junit.Test;