Go to file
dependabot[bot] 714535523d
chore(deps): bump go.unistack.org/micro/v3 from 3.9.8 to 3.9.10
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.9.8 to 3.9.10.
- [Release notes](https://github.com/unistack-org/micro/releases)
- [Commits](https://github.com/unistack-org/micro/compare/v3.9.8...v3.9.10)

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

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-27 21:33:59 +00:00
.github chore(deps): bump golangci/golangci-lint-action from 3.1.0 to 3.2.0 (#77) 2022-06-25 23:07:18 +03:00
.gitignore add LICENSE 2021-01-10 15:39:57 +03:00
.synced update micro to v3.1.3 2021-01-19 23:05:03 +03:00
go.mod chore(deps): bump go.unistack.org/micro/v3 from 3.9.8 to 3.9.10 2022-06-27 21:33:59 +00:00
go.sum chore(deps): bump go.unistack.org/micro/v3 from 3.9.8 to 3.9.10 2022-06-27 21:33:59 +00:00
LICENSE add LICENSE 2021-01-10 15:39:57 +03:00
options.go update import paths 2021-10-28 00:52:30 +03:00
README.md use own fork 2021-01-10 15:34:37 +03:00
zerolog_test.go fix panic 2022-02-22 14:17:16 +03:00
zerolog.go fix panic 2022-02-22 14:17:16 +03:00

Zerolog

Zerolog logger implementation for go-micro meta logger.

Usage

func ExampleWithOut() {
  logger.DefaultLogger = zerolog.NewLogger(logger.WithOutput(os.Stdout), logger.WithLevel(logger.DebugLevel))

  logger.Infof(logger.InfoLevel, "testing: %s", "Infof")

  // Output:
  // {"level":"info","message":"testing: Infof"}
}