You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2018/02/17 09:02:54 UTC

[incubator-plc4x] 01/03: removed debug log statements

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

sruehl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git

commit 52a88997ec16fd056471e734af86027f04f2136a
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Sat Feb 17 09:34:53 2018 +0100

    removed debug log statements
---
 .../ads/src/main/java/org/apache/plc4x/java/ads/netty/ADSProtocol.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/plc4j/protocols/ads/src/main/java/org/apache/plc4x/java/ads/netty/ADSProtocol.java b/plc4j/protocols/ads/src/main/java/org/apache/plc4x/java/ads/netty/ADSProtocol.java
index 8993751..bafb5a0 100644
--- a/plc4j/protocols/ads/src/main/java/org/apache/plc4x/java/ads/netty/ADSProtocol.java
+++ b/plc4j/protocols/ads/src/main/java/org/apache/plc4x/java/ads/netty/ADSProtocol.java
@@ -145,9 +145,7 @@ public class ADSProtocol extends MessageToMessageCodec<ByteBuf, AMSTCPPacket> {
             case ADS_Write_Control:
                 if (stateId.isRequest()) {
                     ADSState adsState = ADSState.of(commandBuffer);
-                    LOGGER.info("" + adsState);
                     DeviceState deviceState = DeviceState.of(commandBuffer);
-                    LOGGER.info("" + deviceState);
                     Length length = Length.of(commandBuffer);
                     if (length.getAsLong() > Integer.MAX_VALUE) {
                         throw new IllegalStateException("Overflow in datalength: " + length.getAsLong());

-- 
To stop receiving notification emails like this one, please contact
sruehl@apache.org.