本站源代码
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Mura Li d77176912b Use Go1.11 module (#5743) hace 5 años
..
.gitignore Use Go1.11 module (#5743) hace 5 años
LICENSE add other session providers (#5963) hace 5 años
README.md Use Go1.11 module (#5743) hace 5 años
README_CN.md Use Go1.11 module (#5743) hace 5 años
dbwriter.go add other session providers (#5963) hace 5 años
filewriter.go add other session providers (#5963) hace 5 años
logext.go add other session providers (#5963) hace 5 años

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/

上海开阖软件有限公司 沪ICP备12045867号-1