1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-22 23:40:19 +00:00
Files
.github
cache
config
context
grace
httplib
logs
alils
es
README.md
accesslog.go
conn.go
conn_test.go
console.go
console_test.go
file.go
file_test.go
jianliao.go
log.go
logger.go
logger_test.go
multifile.go
multifile_test.go
slack.go
smtp.go
smtp_test.go
metric
migration
orm
pkg
plugins
scripts
session
swagger
testdata
testing
toolbox
utils
validation
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE
README.md
admin.go
admin_test.go
adminui.go
app.go
beego.go
build_info.go
config.go
config_test.go
controller.go
controller_test.go
doc.go
error.go
error_test.go
filter.go
filter_test.go
flash.go
flash_test.go
fs.go
go.mod
go.sum
hooks.go
log.go
mime.go
namespace.go
namespace_test.go
parser.go
policy.go
router.go
router_test.go
staticfile.go
staticfile_test.go
template.go
template_test.go
templatefunc.go
templatefunc_test.go
tree.go
tree_test.go
unregroute_test.go
Beego/logs
2020-07-22 23:00:06 +08:00
..
2020-06-30 10:12:10 +08:00
2020-07-22 23:00:06 +08:00
2020-07-06 21:38:47 +02:00
2020-07-06 21:38:47 +02:00
2019-03-12 15:51:43 +08:00
2020-07-22 23:00:06 +08:00
2020-07-22 23:00:06 +08:00
2017-04-23 19:19:05 +02:00
2020-07-06 21:38:47 +02:00
2016-03-09 16:00:52 +08:00
2018-05-03 22:04:49 +08:00
2017-04-23 19:19:05 +02:00
2014-08-18 16:41:43 +08:00
2017-04-23 19:19:05 +02: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)