1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-19 11:00:38 +00:00

Merge pull request from wuranbo/dev_track

*feature) add BeeLogger.GetLogFuncCallDepth make simple wrapper log method aviable.
This commit is contained in:
astaxie
2015-04-13 12:49:51 +08:00

@ -181,6 +181,11 @@ func (bl *BeeLogger) SetLogFuncCallDepth(d int) {
bl.loggerFuncCallDepth = d bl.loggerFuncCallDepth = d
} }
// get log funcCallDepth for wrapper
func (bl *BeeLogger) GetLogFuncCallDepth() int {
return bl.loggerFuncCallDepth
}
// enable log funcCallDepth // enable log funcCallDepth
func (bl *BeeLogger) EnableFuncCallDepth(b bool) { func (bl *BeeLogger) EnableFuncCallDepth(b bool) {
bl.enableFuncCallDepth = b bl.enableFuncCallDepth = b