# Functions
Debug ...
Debugf ...
Error ...
Errorf ...
Fatal ...
Fatalf ...
GetLogger get logger.
Info ...
Infof ...
No description provided by the author
Panic ...
Panicf ...
SetLogger customize yourself logger.
Warn ...
Warnf ...
# Constants
DebugLevel logs are typically voluminous, and are usually disabled in production.
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
No description provided by the author
# Type aliases
LogLevel represents the level of logging.