micro/util/log
dy1006 84f52fd7ac
Update log.go (#1976)
change nlog.DefaultLogger.Log to nlog.DefaultLogger.Logf in the Logf function
2020-08-31 07:18:55 +01:00
..
log_test.go fix bug https://github.com/micro/go-micro/issues/1883 (#1884) 2020-07-29 12:45:25 +01:00
log.go Update log.go (#1976) 2020-08-31 07:18:55 +01:00
README.md v3 refactor (#1868) 2020-07-27 13:22:00 +01:00

Log

DEPRECATED: use github.com/micro/go-micro/v3/logger interface

This is the global logger for all micro based libraries.

Set Logger

Set the logger for micro libraries

// 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)