c0f1e74bed
Co-authored-by: Romain <rtribotte@users.noreply.github.com>
12 lines
357 B
Go
12 lines
357 B
Go
package middlewares
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/log"
|
|
)
|
|
|
|
// GetLoggerCtx creates a logger context with the middleware fields.
|
|
func GetLoggerCtx(ctx context.Context, middleware, middlewareType string) context.Context {
|
|
return log.With(ctx, log.Str(log.MiddlewareName, middleware), log.Str(log.MiddlewareType, middlewareType))
|
|
}
|