mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-17 17:44:30 +02:00
af3cfa0a4c
remove unnecessary dependencies between plugins upgrade go-micro.dev/v4 to v4.2.1
logrus
logrus logger implementation for go-micro meta logger.
Usage
import (
"os"
"github.com/sirupsen/logrus"
"go-micro.dev/v4/logger"
)
func ExampleWithOutput() {
logger.DefaultLogger = NewLogger(logger.WithOutput(os.Stdout))
logger.Infof(logger.InfoLevel, "testing: %s", "Infof")
}
func ExampleWithLogger() {
l:= logrus.New() // *logrus.Logger
logger.DefaultLogger = NewLogger(WithLogger(l))
logger.Infof(logger.InfoLevel, "testing: %s", "Infof")
}