remove this very verbose log

This commit is contained in:
2026-09-12 18:27:09 +01:00
parent decd91c406
commit 196e1d8916
+2 -1
View File
@@ -19,6 +19,7 @@ import (
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
) )
// TODO: remove this logger. It should be on the device struct
var pLogger *slog.Logger var pLogger *slog.Logger
func SetLogger(l *slog.Logger) { func SetLogger(l *slog.Logger) {
@@ -377,7 +378,7 @@ func (d *CDashDisplay) SendData(data *telemetry.TelemetryData) {
curStr += fmt.Sprintf("%02x ", byte) curStr += fmt.Sprintf("%02x ", byte)
if byteCount == 8 { if byteCount == 8 {
pLogger.Debug(curStr) // pLogger.Debug(curStr)
curStr = "" curStr = ""
byteCount = 0 byteCount = 0
} }