protocol/meshcore: remove debug log

This commit is contained in:
2026-02-18 13:14:02 +01:00
parent 71b4f3734c
commit 042d89354a

View File

@@ -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 {