diff --git a/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java b/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
index 034d31bae527a1607616afc8436743c7bbf1a119..d783bd32048a948f275015de91cbee7ff3c2fc57 100644
--- a/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
+++ b/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
@@ -143,7 +143,6 @@ public class LabCommDecoderChannel implements LabCommDecoder {
byte c = in.readByte();
res |= (c & 0x7f) << 7*i;
cont = (c & 0x80) != 0;
- System.out.println("decodePacked32: "+res);
i++;
} while(cont);