高热共公日志库
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
余 欣怀 38247cf3c9 修复es type错误问题 il y a 1 an
..
alils v1.3.5 Fix 修复goroutine并发调用初始化 nil pointer的问题 il y a 4 ans
es 修复es type错误问题 il y a 1 an
README.md v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
accesslog.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
conn.go v1.2.1 增加es管道写入日志 il y a 4 ans
conn_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
console.go v1.2.1 增加es管道写入日志 il y a 4 ans
console_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
file.go v1.2.1 增加es管道写入日志 il y a 4 ans
file_test.go 修复es type错误问题 il y a 1 an
jianliao.go v1.2.1 增加es管道写入日志 il y a 4 ans
log.go v1.2.1 增加es管道写入日志 il y a 4 ans
logger.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
logger_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
multifile.go v1.2.1 增加es管道写入日志 il y a 4 ans
multifile_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans
slack.go v1.2.1 增加es管道写入日志 il y a 4 ans
smtp.go v1.2.1 增加es管道写入日志 il y a 4 ans
smtp_test.go v1.2.0 整个beegolog 打进去, 增加syncmap日志通道 il y a 4 ans

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)