2019-03-27 11:15:23 +00:00
|
|
|
## log
|
|
|
|
|
2020-11-03 06:04:09 +00:00
|
|
|
[![](https://goreportcard.com/badge/gitea.com/lunny/log)](https://goreportcard.com/report/gitea.com/lunny/log)
|
|
|
|
[![GoDoc](https://godoc.org/gitea.com/lunny/log?status.png)](https://godoc.org/gitea.com/lunny/log)
|
|
|
|
|
|
|
|
[简体中文](https://gitea.com/lunny/log/blob/master/README_CN.md)
|
2019-03-27 11:15:23 +00:00
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
```
|
2020-11-03 06:04:09 +00:00
|
|
|
go get gitea.com/lunny/log
|
2019-03-27 11:15:23 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# Features
|
|
|
|
|
|
|
|
* Add color support for unix console
|
|
|
|
* Implemented dbwriter to save log to database
|
|
|
|
* Implemented FileWriter to save log to file by date or time.
|
|
|
|
* Location configuration
|
|
|
|
|
|
|
|
# Example
|
|
|
|
|
|
|
|
For Single File:
|
|
|
|
```Go
|
|
|
|
f, _ := os.Create("my.log")
|
|
|
|
log.Std.SetOutput(f)
|
|
|
|
```
|
|
|
|
|
|
|
|
For Multiple Writer:
|
|
|
|
```Go
|
|
|
|
f, _ := os.Create("my.log")
|
|
|
|
log.Std.SetOutput(io.MultiWriter(f, os.Stdout))
|
|
|
|
```
|
|
|
|
|
|
|
|
For log files by date or time:
|
|
|
|
```Go
|
|
|
|
w := log.NewFileWriter(log.FileOptions{
|
|
|
|
ByType:log.ByDay,
|
|
|
|
Dir:"./logs",
|
|
|
|
})
|
|
|
|
log.Std.SetOutput(w)
|
|
|
|
```
|
|
|
|
|
|
|
|
# About
|
|
|
|
|
|
|
|
This repo is an extension of Golang log.
|
|
|
|
|
|
|
|
# LICENSE
|
|
|
|
|
|
|
|
BSD License
|
|
|
|
[http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)
|