Name Last Update
..
alils Loading commit data...
es Loading commit data...
README.md Loading commit data...
accesslog.go Loading commit data...
color.go Loading commit data...
color_windows.go Loading commit data...
color_windows_test.go Loading commit data...
conn.go Loading commit data...
conn_test.go Loading commit data...
console.go Loading commit data...
console_test.go Loading commit data...
file.go Loading commit data...
file_test.go Loading commit data...
jianliao.go Loading commit data...
log.go Loading commit data...
logger.go Loading commit data...
logger_test.go Loading commit data...
multifile.go Loading commit data...
multifile_test.go Loading commit data...
slack.go Loading commit data...
smtp.go Loading commit data...
smtp_test.go Loading commit data...

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)