diff --git a/web/host.go b/web/host.go index b98fce9c..ee70968e 100644 --- a/web/host.go +++ b/web/host.go @@ -257,8 +257,8 @@ func (host *Host) Preprocess(ctx context.Context, req *http.Request) (context.Co for _, preprocessor := range host.preprocessors { log.WithFields(log.Fields{ - "priority": preprocessor.PreprocessPriority(), - "processorType": reflect.TypeOf(preprocessor).String(), + "processorPriority": preprocessor.PreprocessPriority(), + "processorType": reflect.TypeOf(preprocessor).String(), }).Debug("Preprocessing request") ctx, statusCode, err = preprocessor.Preprocess(ctx, req) if err != nil {