Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/baifei2014/log


https://github.com/baifei2014/log

log zap

Last synced: 11 days ago
JSON representation

Awesome Lists containing this project

README

        

# log

fast convenient and flexible

## Installation

`go get -u github.com/baifei2014/log`

Note that log only supports the two most recent minor versions of Go.

## Quick Start

```go
config := &log.Config{
OutputDir: "",
ErrorOutputDir: "",
}
log.Init(config)
defer log.Close()

log.Info("success...")
```