disable output of caller
This commit is contained in:
parent
0ddbdc8f80
commit
6d1d9df282
|
@ -54,10 +54,12 @@ func Init(configInterface interface{}, db *database.DB, bot *bot.Bot) output.Out
|
|||
}
|
||||
|
||||
return &Output{
|
||||
defaults: defaults,
|
||||
files: make(map[string]*os.File),
|
||||
formatter: &log.JSONFormatter{},
|
||||
path: config.Directory,
|
||||
defaults: defaults,
|
||||
files: make(map[string]*os.File),
|
||||
formatter: &log.JSONFormatter{
|
||||
DisableCaller: true,
|
||||
},
|
||||
path: config.Directory,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -141,6 +141,7 @@ func Init(configInterface interface{}, db *database.DB, bot *bot.Bot) output.Out
|
|||
channels: channels,
|
||||
client: client,
|
||||
formatter: &log.TextFormatter{
|
||||
DisableCaller: true,
|
||||
DisableTimestamp: true,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue