Beego/logs/console.go

88 lines
1.8 KiB
Go
Raw Normal View History

2014-04-12 05:18:18 +00:00
// Beego (http://beego.me/)
// @description beego is an open-source, high-performance web framework for the Go programming language.
// @link http://github.com/astaxie/beego for the canonical source repository
// @license http://github.com/astaxie/beego/blob/master/LICENSE
// @authors astaxie
2013-08-27 15:48:58 +00:00
package logs
import (
"encoding/json"
"log"
"os"
"runtime"
2013-08-27 15:48:58 +00:00
)
type Brush func(string) string
func NewBrush(color string) Brush {
pre := "\033["
reset := "\033[0m"
return func(text string) string {
return pre + color + "m" + text + reset
}
}
var colors = []Brush{
NewBrush("1;36"), // Trace cyan
NewBrush("1;34"), // Debug blue
NewBrush("1;32"), // Info green
NewBrush("1;33"), // Warn yellow
NewBrush("1;31"), // Error red
NewBrush("1;35"), // Critical purple
}
2013-12-30 15:32:57 +00:00
// ConsoleWriter implements LoggerInterface and writes messages to terminal.
2013-08-27 15:48:58 +00:00
type ConsoleWriter struct {
lg *log.Logger
Level int `json:"level"`
2013-08-27 15:48:58 +00:00
}
2013-12-30 15:32:57 +00:00
// create ConsoleWriter returning as LoggerInterface.
2013-08-27 15:48:58 +00:00
func NewConsole() LoggerInterface {
cw := new(ConsoleWriter)
cw.lg = log.New(os.Stdout, "", log.Ldate|log.Ltime)
cw.Level = LevelTrace
2013-08-27 15:48:58 +00:00
return cw
}
2013-12-30 15:32:57 +00:00
// init console logger.
// jsonconfig like '{"level":LevelTrace}'.
2013-08-27 15:48:58 +00:00
func (c *ConsoleWriter) Init(jsonconfig string) error {
if len(jsonconfig) == 0 {
return nil
}
err := json.Unmarshal([]byte(jsonconfig), c)
2013-08-27 15:48:58 +00:00
if err != nil {
return err
}
return nil
}
2013-12-30 15:32:57 +00:00
// write message in console.
2013-08-27 15:48:58 +00:00
func (c *ConsoleWriter) WriteMsg(msg string, level int) error {
if level < c.Level {
2013-08-27 15:48:58 +00:00
return nil
}
if goos := runtime.GOOS; goos == "windows" {
c.lg.Println(msg)
} else {
c.lg.Println(colors[level](msg))
}
2013-08-27 15:48:58 +00:00
return nil
}
2013-12-30 15:32:57 +00:00
// implementing method. empty.
2013-08-27 15:48:58 +00:00
func (c *ConsoleWriter) Destroy() {
}
2013-12-30 15:32:57 +00:00
// implementing method. empty.
2013-11-27 09:50:10 +00:00
func (c *ConsoleWriter) Flush() {
}
2013-08-27 15:48:58 +00:00
func init() {
Register("console", NewConsole)
}