1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-07 20:43:33 +00:00
Beego/logs
1fei b68c814c50 Update console.go
使用json直接初始化系统变量,代码更简单,并且便于后期扩展
2013-12-19 18:15:00 +08:00
..
conn_test.go finish logs module 2013-08-27 23:49:04 +08:00
conn.go Update conn.go 2013-12-19 18:13:10 +08:00
console_test.go delete default console & add bench test 2013-08-28 15:48:48 +08:00
console.go Update console.go 2013-12-19 18:15:00 +08:00
file_test.go delete default console & add bench test 2013-08-28 15:48:48 +08:00
file.go add flush & read all chan data 2013-11-27 17:50:10 +08:00
log.go add flush & read all chan data 2013-11-27 17:50:10 +08:00
README.md add logs readme 2013-09-10 18:44:29 +08:00
smtp_test.go sleep some time for send mail 2013-08-28 15:55:34 +08:00
smtp.go add flush & read all chan data 2013-11-27 17:50:10 +08:00

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 := 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)