Documentation
¶
Index ¶
- Constants
- func NewJSONLogger(opts ...Option) (*zap.Logger, error)
- type Option
- func WithDebugLevel() Option
- func WithErrorLevel() Option
- func WithField(key, value string) Option
- func WithFile(file string) Option
- func WithFileP(file string) Option
- func WithFileRotationP(file string) Option
- func WithInfoLevel() Option
- func WithTimeLayout(timeLayout string) Option
- func WithWarnLevel() Option
Constants ¶
View Source
const ( // DefaultLevel the default log level DefaultLevel = zapcore.InfoLevel // DefaultTimeLayout the default time layout; DefaultTimeLayout = time.RFC3339 )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Option ¶
type Option func(*option)
Option custom setup config
func WithDebugLevel ¶
func WithDebugLevel() Option
WithDebugLevel only greater than 'level' will output
func WithErrorLevel ¶
func WithErrorLevel() Option
WithErrorLevel only greater than 'level' will output
func WithFileRotationP ¶
WithFileRotationP write log to some file with rotation
func WithInfoLevel ¶
func WithInfoLevel() Option
WithInfoLevel only greater than 'level' will output
func WithTimeLayout ¶
WithTimeLayout custom time format
func WithWarnLevel ¶
func WithWarnLevel() Option
WithWarnLevel only greater than 'level' will output