-loglevel now of string type
Some checks failed
Auto-Update Go Modules / update-go-modules (push) Has been cancelled

update Logging section in README.

upd CHANGELOG
This commit is contained in:
2025-04-05 22:46:58 +01:00
parent 19f5ec4a76
commit 35ffa55fb9
4 changed files with 44 additions and 11 deletions

View File

@@ -3,6 +3,8 @@ package packet
import (
"bytes"
"fmt"
log "github.com/sirupsen/logrus"
)
const bufSz = 512
@@ -29,5 +31,6 @@ func (r Request) Encode(cmd string) []byte {
r.buf.Reset()
r.buf.Write(r.Header())
r.buf.WriteString(fmt.Sprintf(" %s %s", r.password, cmd))
log.Tracef("Encoded request: %s", r.buf.String())
return r.buf.Bytes()
}