https://github.com/cabify/go-logging
Simple logging package for Go [managed by soy-programador]
https://github.com/cabify/go-logging
Last synced: 6 months ago
JSON representation
Simple logging package for Go [managed by soy-programador]
- Host: GitHub
- URL: https://github.com/cabify/go-logging
- Owner: cabify
- License: mit
- Created: 2019-02-27T09:57:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T09:09:58.000Z (over 1 year ago)
- Last Synced: 2025-02-25T13:56:08.454Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 98
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Deprecated
=======
The development of this library is discontinued and we encourage you to avoid
using it in new projects. There are better alternatives out there.
logging
=======
Simple logging package in Go used at Cabify.
Originally forked from [cenkalti/log](https://github.com/cenkalti/log)
[](https://godoc.org/github.com/cabify/go-logging)
Install
-------
```sh
$ go get github.com/cabify/go-logging
```
Features
--------
* Log levels (DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL)
* Different colored output for different log levels
* Customizable logging handlers
* Customizable formatters
* Log to multiple backends concurrently
Example Usage
-------------
See [https://github.com/cabify/go-logging/blob/master/example/example.go](https://github.com/cabify/go-logging/blob/master/example/example.go)