Files
godoxy-yusing/internal/route/stream/debug_debug.go
2026-02-16 09:04:56 +08:00

13 lines
231 B
Go

//go:build debug
package stream
import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
func logDebugf(stream zerolog.LogObjectMarshaler, format string, v ...any) {
log.Debug().EmbedObject(stream).Msgf(format, v...)
}