Skip to content

Commit

Permalink
Merge pull request #288 from Security-Onion-Solutions/jertel/exp
Browse files Browse the repository at this point in the history
use unique log key
  • Loading branch information
jertel authored Oct 3, 2023
2 parents b8c0702 + 6ec6e23 commit cad931a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit cad931a

Please sign in to comment.