1
0
镜像自地址 https://github.com/astaxie/beego.git 已同步 2025-07-17 18:52:16 +00:00

fixed bug: in logs package check if platform is windows

这个提交包含在:
cloudaice
2014-01-28 11:26:43 +08:00
父节点 9384e87083
当前提交 d93f112083

查看文件

@@ -4,6 +4,7 @@ import (
"encoding/json"
"log"
"os"
"runtime"
)
type Brush func(string) string
@@ -54,7 +55,11 @@ func (c *ConsoleWriter) WriteMsg(msg string, level int) error {
if level < c.Level {
return nil
}
c.lg.Println(colors[level](msg))
if goos := runtime.GOOS; goos == "windows" {
c.lg.Println(msg)
} else {
c.lg.Println(colors[level](msg))
}
return nil
}