NIFI-984: Bad class used for logging in TestDetectDuplicate

Using TestListenUDP instead of TestDetectDuplicate when creating the logger.

This closes #89

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
Joe 2015-09-22 14:37:17 +02:00 committed by Aldrin Piri
parent d75c7b54e8
commit 14eaeeb1ee
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class TestDetectDuplicate {
System.setProperty("org.slf4j.simpleLogger.log.nifi.io.nio", "debug"); System.setProperty("org.slf4j.simpleLogger.log.nifi.io.nio", "debug");
System.setProperty("org.slf4j.simpleLogger.log.nifi.processors.standard.DetectDuplicate", "debug"); System.setProperty("org.slf4j.simpleLogger.log.nifi.processors.standard.DetectDuplicate", "debug");
System.setProperty("org.slf4j.simpleLogger.log.nifi.processors.standard.TestDetectDuplicate", "debug"); System.setProperty("org.slf4j.simpleLogger.log.nifi.processors.standard.TestDetectDuplicate", "debug");
LOGGER = LoggerFactory.getLogger(TestListenUDP.class); LOGGER = LoggerFactory.getLogger(TestDetectDuplicate.class);
} }
@Test @Test