https://github.com/skifli/golog
A performant logging module for Go.
https://github.com/skifli/golog
go golang logging performant
Last synced: 12 months ago
JSON representation
A performant logging module for Go.
- Host: GitHub
- URL: https://github.com/skifli/golog
- Owner: skifli
- License: mit
- Created: 2023-02-09T20:10:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-31T10:30:27.000Z (about 3 years ago)
- Last Synced: 2025-06-04T02:27:25.205Z (about 1 year ago)
- Topics: go, golang, logging, performant
- Language: Go
- Homepage: https://pkg.go.dev/github.com/skifli/golog
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# golog
[](https://goreportcard.com/report/github.com/skifli/golog)
[](https://godoc.org/github.com/skifli/golog)

- [golog](#golog)
- [Installation](#installation)
- [Example](#example)
- [Documentation](#documentation)
**golog** implements a logging infrastructure for Go. It focuses on performance, while providing a simple API.
## Installation
**golog** can be installed by using *go get*:
```
go get github.com/skifli/golog
```
After this command has been run, **golog** is ready to use. **golog** can be updated by using *go get -u*:
```
go get -u github.com/skifli/golog
```
## Example
The [example](examples/simple_example.go) demonstrates the majority of the features found in **golog**.
[](examples/simple_example.go)
## Documentation
See the [godoc reference](https://pkg.go.dev/github.com/skifli/golog).