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

18 lines
265 B

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