Documentation ¶
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Level ¶
const ( // DebugLevel logs are typically voluminous, and are usually disabled in // production. DebugLevel Level = iota - 1 // InfoLevel is the default logging priority. InfoLevel // WarnLevel logs are more important than Info, but don't need individual // human review. WarnLevel // ErrorLevel logs are high-priority. If an application is running smoothly, // it shouldn't generate any error-level logs. ErrorLevel // DPanicLevel logs are particularly important errors. In development the // logger panics after writing the message. DPanicLevel // PanicLevel logs a message, then panics. PanicLevel // FatalLevel logs a message, then calls os.Exit(1). FatalLevel )
type Option ¶
type Option func(config *Config)
func Verbose ¶
Verbose alias WithLevel setter log level to DebugLevel
Example ¶
package main import ( "github.com/omalloc/contrib/kratos/zap" ) func main() { log := zap.New(zap.Verbose(true)) log.Info("info") log.Debug("debug") }
Output: {"level":"info"} {"level":"debug"}
func WithEncoding ¶
WithEncoding setter log encoding. only support `json` and `console`
func WithLevel ¶
WithLevel setter log level. alias zap.config.OutputPaths
Example ¶
package main import ( "github.com/omalloc/contrib/kratos/zap" ) func main() { log := zap.New(zap.WithLevel(zap.InfoLevel)) log.Debug("no-debug") log.Info("info") }
Output: {"level":"info"}
func WithLevelString ¶
WithLevelString setter log level (string-alias)
func WithOutput ¶
WithOutput setter log output paths. valid `stdout` `stderr`
Click to show internal directories.
Click to hide internal directories.