Go to file
dependabot[bot] 0e8c854f49
Bump github/codeql-action from 1 to 2 (#66)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v1...v2)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-02 14:30:12 +03:00
.github Bump github/codeql-action from 1 to 2 (#66) 2022-05-02 14:30:12 +03: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.9.5 to 3.9.7 2022-03-31 04:21:07 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.9.5 to 3.9.7 2022-03-31 04:21:07 +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")
}