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.
余 欣怀 33161d92ac 修改开发/测试环境写日志方式 hace 1 año
..
alils 更新 haiwai-grlogs 版本 hace 1 año
es 更新 haiwai-grlogs 版本 hace 1 año
README.md v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
accesslog.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
conn.go v1.2.1 增加es管道写入日志 hace 4 años
conn_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
console.go v1.2.1 增加es管道写入日志 hace 4 años
console_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
file.go 修改开发/测试环境写日志方式 hace 1 año
file_test.go 修复es type错误问题 hace 1 año
jianliao.go v1.2.1 增加es管道写入日志 hace 4 años
log.go 更新 haiwai-grlogs 版本 hace 1 año
logger.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
logger_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
multifile.go v1.2.1 增加es管道写入日志 hace 4 años
multifile_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años
slack.go v1.2.1 增加es管道写入日志 hace 4 años
smtp.go v1.2.1 增加es管道写入日志 hace 4 años
smtp_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 hace 4 años

README.md

logs

logs is a Go logs manager. It can use many logs adapters. The repo is inspired by database/sql .

How to install?

go get github.com/astaxie/beego/logs

What adapters are supported?

As of now this logs support console, file,smtp and conn.

How to use it?

First you must import it

import (
	"github.com/astaxie/beego/logs"
)

Then init a Log (example with console adapter)

log := logs.NewLogger(10000)
log.SetLogger("console", "")

the first params stand for how many channel

Use it like this:

log.Trace("trace")
log.Info("info")
log.Warn("warning")
log.Debug("debug")
log.Critical("critical")

File adapter

Configure file adapter like this:

log := NewLogger(10000)
log.SetLogger("file", `{"filename":"test.log"}`)

Conn adapter

Configure like this:

log := NewLogger(1000)
log.SetLogger("conn", `{"net":"tcp","addr":":7020"}`)
log.Info("info")

Smtp adapter

Configure like this:

log := NewLogger(10000)
log.SetLogger("smtp", `{"username":"beegotest@gmail.com","password":"xxxxxxxx","host":"smtp.gmail.com:587","sendTos":["xiemengjun@gmail.com"]}`)
log.Critical("sendmail critical")
time.Sleep(time.Second * 30)