Files
console/output/verbosity/verbosity.go
andrey 71f774aa5a
All checks were successful
Go Action / goaction (pull_request) Successful in 52s
update go tools
2025-12-27 21:41:14 +03:00

14 lines
293 B
Go

package verbosity
//go:generate go tool stringer -type=Verbosity -linecomment
type Verbosity int
const (
Quiet Verbosity = iota - 1 // quiet
Norm // norm
Info // info
Debug // debug
Trace // trace
)