summaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo/container/jdisc
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-04-24 20:51:57 +0200
committergjoranv <gv@verizonmedia.com>2020-04-25 02:24:38 +0200
commitd588f01d40105a13129b8e007a7f65231a6e1ca5 (patch)
treeb7e3eb52aab55a9849d300debb9c5daf93d29d32 /container-core/src/test/java/com/yahoo/container/jdisc
parent09b3ac7d50ba91f801a9d7cbd719a3cbf403932c (diff)
Map remaining DEBUG/SPAM/ERROR/FATAL -> Level.FINE/FINEST/SEVERE
Diffstat (limited to 'container-core/src/test/java/com/yahoo/container/jdisc')
-rw-r--r--container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java b/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
index dce791d375f..876fd0d2b57 100644
--- a/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
+++ b/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
@@ -102,8 +102,8 @@ public class LoggingTestCase {
stream.send(createData());
stream.flush();
assertNull(logChecker.errorCounter.get(LogLevel.INFO));
- assertEquals(1, logChecker.errorCounter.get(LogLevel.DEBUG).intValue());
- assertEquals(2, logChecker.errorCounter.get(LogLevel.SPAM).intValue());
+ assertEquals(1, logChecker.errorCounter.get(Level.FINE).intValue());
+ assertEquals(2, logChecker.errorCounter.get(Level.FINEST).intValue());
}
}