1
0
mirror of https://github.com/astaxie/beego.git synced 2024-05-29 00:23:27 +00:00
Beego/logs
2016-03-01 17:13:50 +08:00
..
es fix issue #1566 2016-01-23 16:56:54 +08:00
conn_test.go update the documents & comments 2014-08-18 16:41:43 +08:00
conn.go remove log package 2016-02-03 14:42:38 +08:00
console_test.go Change option name from noColor to color 2016-01-28 07:50:07 +01:00
console.go remove log package 2016-02-03 14:42:38 +08:00
file_test.go gofmt -s 2016-01-17 23:57:07 +08:00
file.go daily log name dot fixed 2016-03-01 17:00:24 +08:00
files_test.go add test files and bug fixed 2016-02-03 17:54:58 +08:00
files.go add a line of comment 2016-03-01 17:13:50 +08:00
log.go Merge branch 'develop' into log_enhancement 2016-03-01 13:59:27 +08:00
logger.go add files logger to separate different logs 2016-02-03 17:11:53 +08:00
README.md add logs readme 2013-09-10 18:44:29 +08:00
smtp_test.go update the documents & comments 2014-08-18 16:41:43 +08:00
smtp.go fix issue #1566 2016-01-23 16:56:54 +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)