https://github.com/pvormste/yetlog
yetlog provides a universal logger interface.
https://github.com/pvormste/yetlog
go golang interface logger
Last synced: 22 days ago
JSON representation
yetlog provides a universal logger interface.
- Host: GitHub
- URL: https://github.com/pvormste/yetlog
- Owner: pvormste
- License: mit
- Created: 2020-01-16T06:36:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T21:01:17.000Z (about 5 years ago)
- Last Synced: 2025-12-28T12:44:32.392Z (6 months ago)
- Topics: go, golang, interface, logger
- Language: Go
- Homepage: https://godoc.org/github.com/pvormste/yetlog
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://godoc.org/github.com/pvormste/yetlog) 
# yetlog (Yet (Another) Logger)
`yetlog` provides a universal logger interface.
## Install
```bash
go get -u github.com/pvormste/yetlog
```
## Usage
```go
func DoSomething(logger yetlog.Logger) {
logger.Warn("this function is useless", "funcName", "DoSomething")
}
```
## Implementations
| logger | impl. name | impl. repo |
| ------ | ---------- | ---------- |
| [zap](https://github.com/uber-go/zap) | yetzap | [github.com/pvormste/yetzap](https://github.com/pvormste/yetzap) |