mirror of
https://github.com/regclient/regclient.git
synced 2025-04-18 22:44:00 +03:00
This also consolidated the trace logging level to a single definition. Signed-off-by: Brandon Mitchell <git@bmitch.net>
9 lines
131 B
Go
9 lines
131 B
Go
package types
|
|
|
|
import "log/slog"
|
|
|
|
const (
|
|
// LevelTrace is used for tracing network requests.
|
|
LevelTrace = slog.LevelDebug - 4
|
|
)
|