mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 20:10:55 +00:00
fix the log level
This commit is contained in:
parent
1636a7271c
commit
71149218d1
@ -277,6 +277,7 @@ func init() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("init console log error:", err)
|
fmt.Println("init console log error:", err)
|
||||||
}
|
}
|
||||||
|
BeeLogger.SetLogFuncCallDepth(true)
|
||||||
|
|
||||||
err = ParseConfig()
|
err = ParseConfig()
|
||||||
if err != nil && !os.IsNotExist(err) {
|
if err != nil && !os.IsNotExist(err) {
|
||||||
|
@ -154,7 +154,10 @@ func (bl *BeeLogger) writerMsg(loglevel int, msg string) error {
|
|||||||
lm := new(logMsg)
|
lm := new(logMsg)
|
||||||
lm.level = loglevel
|
lm.level = loglevel
|
||||||
if bl.enableFuncCallDepth {
|
if bl.enableFuncCallDepth {
|
||||||
_, file, line, ok := runtime.Caller(bl.loggerFuncCallDepth)
|
_, file, line, ok := runtime.Caller(bl.loggerFuncCallDepth + 1)
|
||||||
|
if !ok {
|
||||||
|
_, file, line, ok = runtime.Caller(bl.loggerFuncCallDepth)
|
||||||
|
}
|
||||||
if ok {
|
if ok {
|
||||||
_, filename := path.Split(file)
|
_, filename := path.Split(file)
|
||||||
lm.msg = fmt.Sprintf("[%s:%d] %s", filename, line, msg)
|
lm.msg = fmt.Sprintf("[%s:%d] %s", filename, line, msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user