1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 14:20:54 +00:00

log to Stderr

This commit is contained in:
JessonChan 2016-04-13 19:41:07 +08:00
parent cb0c006cfa
commit 4cd2408248

View File

@ -262,7 +262,7 @@ func parseConfig(appConfigPath string) (err error) {
for adaptor, config := range BConfig.Log.Outputs {
err = logs.SetLogger(adaptor, config)
if err != nil {
fmt.Printf("%s with the config `%s` got err:%s\n", adaptor, config, err)
fmt.Fprintln(os.Stderr, "%s with the config `%s` got err:%s\n", adaptor, config, err)
}
}
logs.SetLogFuncCall(BConfig.Log.FileLineNum)