From f63b8886cec2c702bb33a0230762337bbd11d392 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 31 Jan 2026 16:05:29 -0600 Subject: [PATCH] remove println --- timecode.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/timecode.go b/timecode.go index 5e8ca1f..fd6c44f 100644 --- a/timecode.go +++ b/timecode.go @@ -3,7 +3,6 @@ package artnet import ( "encoding/binary" "errors" - "fmt" "slices" ) @@ -46,7 +45,6 @@ func (atc *ArtTimeCode) GetID() []uint8 { } func (atc *ArtTimeCode) UnmarshalBinary(data []byte) error { - fmt.Println(data) if len(data) < 14 { return errors.New("ArtTimeCode packet must be at least 14 bytes long") }