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 {