swap out logrus for charmbracelet/log

This commit is contained in:
2025-06-14 07:39:08 +01:00
parent 8ab543df0f
commit 5b8219d107
3 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"encoding/binary"
log "github.com/sirupsen/logrus"
"github.com/charmbracelet/log"
)
const (
@@ -70,5 +70,5 @@ func (p *packet) bumpFrameCounter() {
x := binary.LittleEndian.Uint32(p.framecounter)
binary.LittleEndian.PutUint32(p.framecounter, x+1)
log.Tracef("framecounter: %d", x)
log.Debugf("framecounter: %d", x)
}