You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/05/20 11:20:09 UTC

[plc4x] 03/04: - Removed the debug log output

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/code-gen
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit dc312da52060822625b1ddefaabe1d66277c908e
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Mon May 20 13:19:02 2019 +0200

    - Removed the debug log output
---
 .../src/main/java/org/apache/plc4x/protocols/AbstractProtocolTest.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/protocols/test-utils/src/main/java/org/apache/plc4x/protocols/AbstractProtocolTest.java b/protocols/test-utils/src/main/java/org/apache/plc4x/protocols/AbstractProtocolTest.java
index a6ce90f..77de1db 100644
--- a/protocols/test-utils/src/main/java/org/apache/plc4x/protocols/AbstractProtocolTest.java
+++ b/protocols/test-utils/src/main/java/org/apache/plc4x/protocols/AbstractProtocolTest.java
@@ -19,8 +19,6 @@
 
 package org.apache.plc4x.protocols;
 
-import org.apache.daffodil.japi.Daffodil;
-import org.apache.daffodil.japi.logger.LogLevel;
 import org.apache.daffodil.tdml.DFDLTestSuite;
 import org.apache.daffodil.tdml.Runner;
 import org.apache.daffodil.util.Misc;
@@ -38,7 +36,6 @@ public abstract class AbstractProtocolTest {
     public AbstractProtocolTest(String testsuiteName) {
         System.out.println("Initializing Testsuite:");
         System.out.println(testsuiteName);
-        Daffodil.setLoggingLevel(LogLevel.Resolver);
         this.testsuiteName = testsuiteName;
     }