An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# golog

[![Go Report Card](https://goreportcard.com/badge/github.com/skifli/golog)](https://goreportcard.com/report/github.com/skifli/golog)
[![GoDoc](https://godoc.org/github.com/skifli/golog?status.svg)](https://godoc.org/github.com/skifli/golog)
![Lines of Code](https://img.shields.io/github/languages/code-size/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**.

[![Example Output](examples/simple_example.png)](examples/simple_example.go)

## Documentation

See the [godoc reference](https://pkg.go.dev/github.com/skifli/golog).