mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-23 17:53:05 +02:00
16 lines
294 B
Markdown
16 lines
294 B
Markdown
# Log
|
|
|
|
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)
|
|
```
|