1
0
mirror of https://github.com/regclient/regclient.git synced 2025-04-18 22:44:00 +03:00
regclient/types/slog.go
Brandon Mitchell 3756788d13
Feat: Switch regbot to slog
This also consolidated the trace logging level to a single definition.

Signed-off-by: Brandon Mitchell <git@bmitch.net>
2024-11-11 13:24:54 -05:00

9 lines
131 B
Go

package types
import "log/slog"
const (
// LevelTrace is used for tracing network requests.
LevelTrace = slog.LevelDebug - 4
)