# Functions
Debug logs are typically voluminous, and are usually disabled in production.
Debugf logs are typically voluminous without context and are usually disabled in production.
Error logs are high-priority.
Errorf logs are high-priority without context If an application is running smoothly, it shouldn't generate any error-Level logs.
Info logs Info Level.
Infof logs Info Level without context.
No description provided by the author
No description provided by the author
No description provided by the author
New returns a Logger instance.
Panic logs a message then panic.
Panic logs a message then panic without context.
Warn logs are more important than Info, but don't need individual human review.
Warnf logs are more important than Info but don't need individual human review.
# Variables
Any is an alias of zap.Any.
Bytes is an alias of zap.Bytes.
Duration is an alias of zap.Duration.
Float64 is an alias of zap.Float64.
Int is an alias of zap.Int.
Int32 is an alias of zap.Int32.
Int64 is an alias of zap.Int64.
Int8 is an alias of zap.Int8.
String is an alias of zap.String.
Uint is an alias of zap.Uint.
Uint32 is an alias of zap.Uint32.
Uint64 is an alias of zap.Uint64.
Uint8 is an alias of zap.Uint8.
# Type aliases
Field is an alias of zap.Field.