gitea/vendor/github.com/lunny/log
Mura Li d77176912b Use Go1.11 module (#5743)
* Migrate to go modules

* make vendor

* Update mvdan.cc/xurls

* make vendor

* Update code.gitea.io/git

* make fmt-check

* Update github.com/go-sql-driver/mysql

* make vendor
2019-03-27 19:15:23 +08:00
..
.gitignore Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
LICENSE add other session providers (#5963) 2019-02-05 11:52:51 -05:00
README.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
README_CN.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
dbwriter.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00
filewriter.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00
logext.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00

README.md

log

GoDoc

简体中文

Installation

go get github.com/lunny/log

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:

f, _ := os.Create("my.log")
log.Std.SetOutput(f)

For Multiple Writer:

f, _ := os.Create("my.log")
log.Std.SetOutput(io.MultiWriter(f, os.Stdout))

For log files by date or time:

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/