Fix overriding previous logger in context

This commit is contained in:
Deluan 2022-12-14 11:50:16 -05:00
parent 6c4a0be6ff
commit 6489dd4478
3 changed files with 6 additions and 3 deletions

View file

@ -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