Documentation ¶
Index ¶
- Constants
- func GetLog() *zap.Logger
- func NewZapLogger(opts ...Option) (*zap.Logger, error)
- func WrapMeta(err error, metas ...Meta) (fields []zap.Field)
- type Meta
- type Option
- func WithDebugLevel() Option
- func WithDisableConsole() Option
- func WithErrorLevel() Option
- func WithField(key, value string) Option
- func WithFileP(file string) Option
- func WithFileRotationP(file string, maxSize, maxBackups, maxAge int) Option
- func WithInfoLevel() Option
- func WithLogLevel(level string) 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 ¶
func NewZapLogger ¶
NewJSONLogger return a json-encoder zap logger,
Types ¶
type Meta ¶
type Meta interface { Key() string Value() interface{} // contains filtered or unexported methods }
Meta key-value
type Option ¶
type Option func(*option)
Option custom setup config
func WithDebugLevel ¶
func WithDebugLevel() Option
WithDebugLevel only greater than 'level' will output
func WithDisableConsole ¶
func WithDisableConsole() Option
WithDisableConsole WithEnableConsole write log to os.Stdout or os.Stderr
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 WithLogLevel ¶
func WithTimeLayout ¶
WithTimeLayout custom time format
func WithWarnLevel ¶
func WithWarnLevel() Option
WithWarnLevel only greater than 'level' will output
Click to show internal directories.
Click to hide internal directories.