gocron/modules/logger/logger.go

161 lines
2.7 KiB
Go
Raw Normal View History

2017-04-03 07:27:19 +00:00
package logger
import (
2017-09-16 09:58:33 +00:00
"fmt"
"github.com/cihub/seelog"
"gopkg.in/macaron.v1"
"os"
"runtime"
2017-04-03 07:27:19 +00:00
)
// 日志库
type Level int8
var logger seelog.LoggerInterface
const (
DEBUG = iota
INFO
WARN
ERROR
FATAL
)
2017-09-16 09:58:33 +00:00
func InitLogger() {
config := getLogConfig()
l, err := seelog.LoggerFromConfigAsString(config)
if err != nil {
panic(err)
}
logger = l
2017-04-03 07:27:19 +00:00
}
func Debug(v ...interface{}) {
2017-09-16 09:58:33 +00:00
if macaron.Env != macaron.DEV {
return
}
2017-04-03 07:27:19 +00:00
write(DEBUG, v)
}
2017-09-16 09:58:33 +00:00
func Debugf(format string, v ...interface{}) {
if macaron.Env != macaron.DEV {
return
}
writef(DEBUG, format, v...)
2017-04-14 13:46:02 +00:00
}
2017-04-03 07:27:19 +00:00
func Info(v ...interface{}) {
write(INFO, v)
}
2017-09-16 09:58:33 +00:00
func Infof(format string, v ...interface{}) {
writef(INFO, format, v...)
2017-04-14 13:46:02 +00:00
}
2017-04-03 07:27:19 +00:00
func Warn(v ...interface{}) {
write(WARN, v)
}
2017-09-16 09:58:33 +00:00
func Warnf(format string, v ...interface{}) {
writef(WARN, format, v...)
2017-04-14 13:46:02 +00:00
}
2017-04-03 07:27:19 +00:00
func Error(v ...interface{}) {
write(ERROR, v)
}
2017-09-16 09:58:33 +00:00
func Errorf(format string, v ...interface{}) {
writef(ERROR, format, v...)
2017-04-14 13:46:02 +00:00
}
2017-04-03 07:27:19 +00:00
func Fatal(v ...interface{}) {
write(FATAL, v)
}
2017-09-16 09:58:33 +00:00
func Fatalf(format string, v ...interface{}) {
writef(FATAL, format, v...)
2017-04-14 13:46:02 +00:00
}
2017-04-21 09:41:59 +00:00
func write(level Level, v ...interface{}) {
2017-09-16 09:58:33 +00:00
defer logger.Flush()
content := ""
if macaron.Env == macaron.DEV {
pc, file, line, ok := runtime.Caller(2)
if ok {
content = fmt.Sprintf("#%s#%s#%d行#", file, runtime.FuncForPC(pc).Name(), line)
}
}
switch level {
case DEBUG:
logger.Debug(content, v)
case INFO:
logger.Info(content, v)
case WARN:
logger.Warn(content, v)
case FATAL:
logger.Critical(content, v)
os.Exit(1)
case ERROR:
logger.Error(content, v)
2017-04-03 07:27:19 +00:00
}
}
2017-09-16 09:58:33 +00:00
func writef(level Level, format string, v ...interface{}) {
defer logger.Flush()
content := ""
if macaron.Env == macaron.DEV {
pc, file, line, ok := runtime.Caller(2)
if ok {
content = fmt.Sprintf("#%s#%s#%d行#", file, runtime.FuncForPC(pc).Name(), line)
}
}
format = content + format
switch level {
case DEBUG:
logger.Debugf(format, v...)
case INFO:
logger.Infof(format, v...)
case WARN:
logger.Warnf(format, v...)
case FATAL:
logger.Criticalf(format, v...)
os.Exit(1)
case ERROR:
logger.Errorf(format, v...)
}
2017-04-14 13:46:02 +00:00
}
2017-04-03 07:27:19 +00:00
func getLogConfig() string {
config := `
<seelog>
<outputs formatid="main">
%s
<filter levels="info,critical,error,warn">
<file path="log/cron.log" />
</filter>
</outputs>
<formats>
<format id="main" format="%%Date/%%Time [%%LEV] %%Msg%%n"/>
</formats>
</seelog>`
2017-09-16 09:58:33 +00:00
consoleConfig := ""
if macaron.Env == macaron.DEV {
consoleConfig =
`
2017-04-03 07:27:19 +00:00
<filter levels="info,debug,critical,warn,error">
<console />
</filter>
`
2017-09-16 09:58:33 +00:00
}
config = fmt.Sprintf(config, consoleConfig)
2017-04-03 07:27:19 +00:00
2017-09-16 09:58:33 +00:00
return config
2017-04-03 07:27:19 +00:00
}