From 042d89354a01fdee3936b30901a8aa51d55b4e7b Mon Sep 17 00:00:00 2001 From: maze Date: Wed, 18 Feb 2026 13:14:02 +0100 Subject: [PATCH] protocol/meshcore: remove debug log --- protocol/meshcore/node.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/protocol/meshcore/node.go b/protocol/meshcore/node.go index dc3c6b2..c0574e1 100644 --- a/protocol/meshcore/node.go +++ b/protocol/meshcore/node.go @@ -3,7 +3,6 @@ package meshcore import ( "bytes" "encoding/binary" - "encoding/hex" "fmt" "io" "log" @@ -312,7 +311,7 @@ func (drv *companionDriver) sendAppStart() (err error) { if b, err = drv.writeCommand(companionAppStart, append(make([]byte, 8), []byte("git.maze.io/go/ham")...), companionResponseSelfInfo); err != nil { return fmt.Errorf("meshcore: can't send application start: %v", err) } - log.Printf("companion app start response:\n%s", hex.Dump(b)) + //log.Printf("companion app start response:\n%s", hex.Dump(b)) const expect = 1 + 1 + 1 + 1 + 32 + 4 + 4 + 1 + 1 + 1 + 1 + 4 + 4 + 1 + 1 if len(b) < expect {