Documentation ¶
Index ¶
- func Init(options ...Option) error
- type Format
- type Logger
- type Option
- func EnableGrpcLog(val bool) Option
- func ReportCaller() Option
- func SetOption(k, v interface{}) Option
- func WithFields(fields map[string]interface{}) Option
- func WithFormat(format Format) Option
- func WithLevel(level zerolog.Level) Option
- func WithOutput(out io.Writer) Option
- func WithTimeFormat(timeFormat string) Option
- type Options
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Option ¶
type Option func(*Options)
func EnableGrpcLog ¶
func WithFields ¶
WithFields set default fields for the logger
func WithFormat ¶
WithFormat set default log format for the logger
func WithOutput ¶
WithOutput set default output writer for the logger
func WithTimeFormat ¶
WithTimeFormat set default timeFormat for the logger
type Options ¶
type Options struct { // The logging level the logger should log at. default is `InfoLevel` Level zerolog.Level // Log format. default `json` Format Format // TimeFormat is one of time.RFC3339, time.RFC3339Nano, time.* TimeFormat string // Flag for whether to log caller info (off by default) ReportCaller bool // fields to always be logged Fields map[string]interface{} // It's common to set this to a file, or leave it default which is `os.Stderr` Out io.Writer // Enable/Disable GRPC Logs EnableGrpcLog bool // Alternative options Context context.Context }
Click to show internal directories.
Click to hide internal directories.