https://github.com/navono/go-logger
Golang log wrapper for Zap and logrus
https://github.com/navono/go-logger
golang log logrus zap
Last synced: over 1 year ago
JSON representation
Golang log wrapper for Zap and logrus
- Host: GitHub
- URL: https://github.com/navono/go-logger
- Owner: navono
- License: mit
- Created: 2019-07-31T01:27:13.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-16T04:47:30.000Z (almost 7 years ago)
- Last Synced: 2025-02-26T03:36:25.027Z (over 1 year ago)
- Topics: golang, log, logrus, zap
- Language: Go
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-logger
Logger interface so that your application code does not depend on the implementation.
Make sure to turn the go moudles on if you are inside the `$GOPATH`. Type the below in your terminal and press enter:
```bash
export GO111MODULE=on;
```
and for use:
```
go get github.com/navono/go-logger
```
base code initially from [amitrai48](github.com/amitrai48/logger).