Go to file
dependabot[bot] f9f93053c6
Bump go.unistack.org/micro/v3 from 3.8.21 to 3.9.1
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.8.21 to 3.9.1.
- [Release notes](https://github.com/unistack-org/micro/releases)
- [Commits](https://github.com/unistack-org/micro/compare/v3.8.21...v3.9.1)

---
updated-dependencies:
- dependency-name: go.unistack.org/micro/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-22 20:06:08 +00:00
.github Bump actions/cache from 2 to 3 2022-03-22 04:19:16 +00:00
.synced update micro to v3.1.3 2021-01-19 23:24:13 +03:00
go.mod Bump go.unistack.org/micro/v3 from 3.8.21 to 3.9.1 2022-03-22 20:06:08 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.8.21 to 3.9.1 2022-03-22 20:06:08 +00:00
LICENSE add LICENSE 2021-01-10 15:39:34 +03:00
logrus_test.go logger: add logger Fields test 2022-01-20 00:33:48 +03:00
logrus.go update import paths 2021-10-28 00:32:05 +03:00
options.go update import paths 2021-10-28 00:32:05 +03:00
README.md use own fork 2021-01-10 15:21:29 +03:00

logrus

logrus logger implementation for go-micro meta logger.

Usage

import (
	"os"
	"github.com/sirupsen/logrus"
	"github.com/micro/go-micro/v2/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")
}