change: remove debug log

This commit is contained in:
lilong.129
2023-04-13 23:12:43 +08:00
parent 639ae3e4f2
commit b0b41b8804
2 changed files with 2 additions and 4 deletions
-1
View File
@@ -34,7 +34,6 @@ func newTransport(address string, readTimeout ...time.Duration) (tp transport, e
func (t transport) Send(command string) (err error) {
msg := fmt.Sprintf("%04x%s", len(command), command)
log.Debug().Str("cmd", command).Msg("run adb command")
return _send(t.sock, []byte(msg))
}