package
1.0.5
Repository: https://github.com/hhq163/logger.git
Documentation: pkg.go.dev

# Constants

DebugLevel logs are typically voluminous, and are usually disabled in production.
DPanicLevel logs are particularly important errors.
ErrorLevel logs are high-priority.
FatalLevel logs a message, then calls os.Exit(1).
InfoLevel is the default logging priority.
PanicLevel logs a message, then panics.
WarnLevel logs are more important than Info, but don't need individual human review.

# Interfaces

LevelEnabler decides whether a given logging level is enabled when logging a message.

# Type aliases

A Level is a logging priority.