micro/util/log/README.md

18 lines
417 B
Markdown
Raw Normal View History

2019-05-31 02:35:04 +03:00
# Log
This is the global logger for all micro based libraries which makes use of [github.com/go-log/log](https://github.com/go-log/log).
It defaults the logger to the stdlib log implementation.
## Set Logger
Set the logger for micro libraries
```go
2019-05-31 02:38:05 +03:00
// import go-micro/util/log
2019-05-31 02:35:04 +03:00
import "github.com/micro/go-micro/util/log"
// SetLogger expects github.com/go-log/log.Logger interface
log.SetLogger(mylogger)
```