1
0
fatedier 0f1005ff61 using glide 7 سال پیش
..
alils 0f1005ff61 using glide 7 سال پیش
es 0f1005ff61 using glide 7 سال پیش
README.md 88083d21e8 start refactoring 7 سال پیش
color.go 88083d21e8 start refactoring 7 سال پیش
color_windows.go 88083d21e8 start refactoring 7 سال پیش
color_windows_test.go 0f1005ff61 using glide 7 سال پیش
conn.go 88083d21e8 start refactoring 7 سال پیش
conn_test.go 0f1005ff61 using glide 7 سال پیش
console.go 9e0fd0c4ef add packages 7 سال پیش
console_test.go 0f1005ff61 using glide 7 سال پیش
file.go 1b70f0c4fd update log module 7 سال پیش
file_test.go 0f1005ff61 using glide 7 سال پیش
jianliao.go 88083d21e8 start refactoring 7 سال پیش
log.go 5360febd72 update log module 7 سال پیش
logger.go 88083d21e8 start refactoring 7 سال پیش
logger_test.go 0f1005ff61 using glide 7 سال پیش
multifile.go 88083d21e8 start refactoring 7 سال پیش
multifile_test.go 0f1005ff61 using glide 7 سال پیش
slack.go 88083d21e8 start refactoring 7 سال پیش
smtp.go 88083d21e8 start refactoring 7 سال پیش
smtp_test.go 0f1005ff61 using glide 7 سال پیش

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