# Functions
Configure .
Debug outputs a message at debug level.
Debuga uses fmt.Sprint to construct and log a message at debug level.
DebugEnabled returns whether output of messages using this scope is currently enabled for debug-level output.
Debugf uses fmt.Sprintf to construct and log a message at debug level.
DefaultOptions returns a new set of options, initialized to the defaults.
DefaultScope default logging scope handler.
Error outputs a message at error level.
Errora uses fmt.Sprint to construct and log a message at error level.
ErrorEnabled returns whether output of messages using this scope is currently enabled for error-level output.
Errorf uses fmt.Sprintf to construct and log a message at error level.
Fatal outputs a message at fatal level.
Fatala uses fmt.Sprint to construct and log a message at fatal level.
FatalEnabled returns whether output of messages using this scope is currently enabled for fatal-level output.
Fatalf uses fmt.Sprintf to construct and log a MESSAGE at fatal level.
FindScope returns a previously registered scope, or nil if the named scope wasn't previously registered.
Info outputs a message at info level.
Infoa uses fmt.Sprint to construct and log a message at info level.
InfoEnabled returns whether output of messages using this scope is currently enabled for info-level output.
Infof uses fmt.Sprintf to construct and log a message at info level.
InjectScope.
RegisterScope registers a new logging scope.
Scopes returns a snapshot of the currently defined set of scopes.
No description provided by the author
Sync flushes any buffered log entries.
SyncConfigMapScope naming logging scope handler.
SyncConfigScope naming logging scope handler.
SyncNamingScope naming logging scope handler.
TraceScope.
Warn outputs a message at warn level.
Warna uses fmt.Sprint to construct and log a message at warn level.
WarnEnabled returns whether output of messages using this scope is currently enabled for warn-level output.
Warnf uses fmt.Sprintf to construct and log a message at warn level.
# Constants
DebugLevel enables debug level logging.
No description provided by the author
ErrorLevel enables error level logging.
FatalLevel enables fatal level logging.
InfoLevel enables info level logging.
ConfigLoggerName config logger name, can use FindScope function to get the logger.
NoneLevel disables logging.
SyncConfigLoggerName config sync logger name, can use FindScope function to get the logger.
SyncConfigLoggerName config map sync logger name, can use FindScope function to get the logger.
SyncNamingLoggerName naming sync logger name, can use FindScope function to get the logger.
TraceLoggerName trace logger name, can use FindScope function to get the logger.
WarnLevel enables warn level logging.
# Type aliases
Level is an enumeration of all supported log levels.