From a2bcd6d3f621a62a85ce87b25ed5cb5f3898efbe Mon Sep 17 00:00:00 2001 From: Christian Ege Date: Fri, 12 Apr 2024 14:33:28 +0200 Subject: [PATCH] fix: unexpected debug output This close: #7 --- pkg/pcic/protocol.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/pcic/protocol.go b/pkg/pcic/protocol.go index 0bec80c..7ef1038 100644 --- a/pkg/pcic/protocol.go +++ b/pkg/pcic/protocol.go @@ -160,7 +160,6 @@ func errorParser(data []byte) (ErrorMessage, error) { } func asyncResultParser(data []byte) (Frame, error) { - fmt.Printf("Async Data received\n") frame := Frame{} var err error contentDecorated := data[:len(data)-delimiterFieldLength]