Add enableFullFilePath field to BeeLogger

This commit is contained in:
IamCathal 2020-08-18 21:30:39 +01:00
parent 6c002a3124
commit fe56de06b5
1 changed files with 7 additions and 0 deletions

View File

@ -115,6 +115,7 @@ type BeeLogger struct {
init bool
enableFuncCallDepth bool
loggerFuncCallDepth int
enableFullFilePath bool
asynchronous bool
prefix string
msgChanLen int64
@ -654,6 +655,12 @@ func GetLogger(prefixes ...string) *log.Logger {
return l
}
// EnableFullFilePath enables full file path logging. Disabled by default
// e.g "/home/Documents/GitHub/beego/mainapp/" instead of "mainapp"
func EnableFullFilePath(b bool) {
beeLogger.enableFullFilePath = b
}
// Reset will remove all the adapter
func Reset() {
beeLogger.Reset()