1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 06:33:27 +00:00
Beego/pkg/core/logs
2020-10-05 18:14:01 +08:00
..
alils rename infrastructure to core 2020-10-05 18:14:01 +08:00
es rename infrastructure to core 2020-10-05 18:14:01 +08:00
access_log_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
access_log.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
conn_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
conn.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
console_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
console.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
file_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
file.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
formatter_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
formatter.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
jianliao_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
jianliao.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
log_msg_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
log_msg.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
log_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
log.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
logger_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
logger.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
multifile_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
multifile.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
README.md rename infrastructure to core 2020-10-05 18:14:01 +08:00
slack.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
smtp_test.go rename infrastructure to core 2020-10-05 18:14:01 +08:00
smtp.go rename infrastructure to core 2020-10-05 18:14:01 +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 := 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)