Merge pull request #3934 from stonezdj/add_caller_info
Add option to enable caller information in logger
This commit is contained in:
commit
6a57630cf4
3 changed files with 9 additions and 4 deletions
|
@ -42,6 +42,9 @@ type Configuration struct {
|
||||||
// Hooks allows users to configure the log hooks, to enabling the
|
// Hooks allows users to configure the log hooks, to enabling the
|
||||||
// sequent handling behavior, when defined levels of log message emit.
|
// sequent handling behavior, when defined levels of log message emit.
|
||||||
Hooks []LogHook `yaml:"hooks,omitempty"`
|
Hooks []LogHook `yaml:"hooks,omitempty"`
|
||||||
|
|
||||||
|
// ReportCaller allows user to configure the log to report the caller
|
||||||
|
ReportCaller bool `yaml:"reportcaller,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Loglevel is the level at which registry operations are logged.
|
// Loglevel is the level at which registry operations are logged.
|
||||||
|
|
|
@ -27,6 +27,7 @@ var configStruct = Configuration{
|
||||||
Formatter string `yaml:"formatter,omitempty"`
|
Formatter string `yaml:"formatter,omitempty"`
|
||||||
Fields map[string]interface{} `yaml:"fields,omitempty"`
|
Fields map[string]interface{} `yaml:"fields,omitempty"`
|
||||||
Hooks []LogHook `yaml:"hooks,omitempty"`
|
Hooks []LogHook `yaml:"hooks,omitempty"`
|
||||||
|
ReportCaller bool `yaml:"reportcaller,omitempty"`
|
||||||
}{
|
}{
|
||||||
Level: "info",
|
Level: "info",
|
||||||
Fields: map[string]interface{}{"environment": "test"},
|
Fields: map[string]interface{}{"environment": "test"},
|
||||||
|
|
|
@ -350,6 +350,7 @@ func configureReporting(app *handlers.App) http.Handler {
|
||||||
// configuration.
|
// configuration.
|
||||||
func configureLogging(ctx context.Context, config *configuration.Configuration) (context.Context, error) {
|
func configureLogging(ctx context.Context, config *configuration.Configuration) (context.Context, error) {
|
||||||
logrus.SetLevel(logLevel(config.Log.Level))
|
logrus.SetLevel(logLevel(config.Log.Level))
|
||||||
|
logrus.SetReportCaller(config.Log.ReportCaller)
|
||||||
|
|
||||||
formatter := config.Log.Formatter
|
formatter := config.Log.Formatter
|
||||||
if formatter == "" {
|
if formatter == "" {
|
||||||
|
|
Loading…
Reference in a new issue