2020-02-24 16:07:40 +03:00
|
|
|
# Log
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
DEPRECATED: use github.com/micro/go-micro/v3/logger interface
|
2020-02-24 16:07:40 +03:00
|
|
|
|
|
|
|
This is the global logger for all micro based libraries.
|
|
|
|
|
|
|
|
## Set Logger
|
|
|
|
|
|
|
|
Set the logger for micro libraries
|
|
|
|
|
|
|
|
```go
|
|
|
|
// import go-micro/util/log
|
|
|
|
import "github.com/micro/go-micro/util/log"
|
|
|
|
|
|
|
|
// SetLogger expects github.com/micro/go-micro/debug/log.Log interface
|
|
|
|
log.SetLogger(mylogger)
|
|
|
|
```
|