mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Fix overriding previous logger in context
This commit is contained in:
parent
6c4a0be6ff
commit
6489dd4478
3 changed files with 6 additions and 3 deletions
|
@ -127,7 +127,11 @@ func NewContext(ctx context.Context, keyValuePairs ...interface{}) context.Conte
|
|||
ctx = context.Background()
|
||||
}
|
||||
|
||||
logger := addFields(createNewLogger(), keyValuePairs)
|
||||
logger, ok := ctx.Value(loggerCtxKey).(*logrus.Entry)
|
||||
if !ok {
|
||||
logger = createNewLogger()
|
||||
}
|
||||
logger = addFields(logger, keyValuePairs)
|
||||
ctx = context.WithValue(ctx, loggerCtxKey, logger)
|
||||
|
||||
return ctx
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue