From 90a7ce5c6ad5ab3e1076596b558b3bfa9f8fa9fe Mon Sep 17 00:00:00 2001 From: astaxie Date: Mon, 3 Nov 2014 16:45:42 +0800 Subject: [PATCH] split the file for logs --- logs/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logs/log.go b/logs/log.go index 89574769..6251f573 100644 --- a/logs/log.go +++ b/logs/log.go @@ -155,7 +155,7 @@ func (bl *BeeLogger) writerMsg(loglevel int, msg string) error { lm.level = loglevel if bl.enableFuncCallDepth { _, file, line, ok := runtime.Caller(bl.loggerFuncCallDepth) - if file == "log.go" && line == 97 { + if _, filename := path.Split(file); filename == "log.go" && line == 97 { _, file, line, ok = runtime.Caller(bl.loggerFuncCallDepth + 1) } if ok {