mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 20:10:55 +00:00
if read the log.go then calldepth add 1
This commit is contained in:
parent
304beaf89f
commit
88caf1ed70
@ -155,6 +155,9 @@ func (bl *BeeLogger) writerMsg(loglevel int, msg string) error {
|
|||||||
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)
|
||||||
|
if file == "log.go" && line == 97 {
|
||||||
|
_, file, line, ok := runtime.Caller(bl.loggerFuncCallDepth + 1)
|
||||||
|
}
|
||||||
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