Add log => go-log

This commit is contained in:
Asim Aslam
2019-05-31 00:35:04 +01:00
parent c90d0eff0a
commit 5595a8e0e4
2 changed files with 58 additions and 0 deletions

17
util/log/README.md Normal file
View File

@@ -0,0 +1,17 @@
# 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
// import micro/go-log
import "github.com/micro/go-micro/util/log"
// SetLogger expects github.com/go-log/log.Logger interface
log.SetLogger(mylogger)
```