You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/log/README.md

17 lines
265 B

# Log
## Usage
### Structured logging
```
logger := log.NewLogger(os.Stdout)
logger = With(logger, "key", "value")
log := log.NewHelper("github.com/project/foo", logger)
// Levels
log.Info("hello")
log.Infof("hello %s", "kratos")
log.Infow("key", "value")
```