Skip to content

Commit

Permalink
feat(access-logging): Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ldebruijn committed Jun 4, 2024
1 parent 3797a1d commit 5dbd938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/business/rules/accesslogging/accesslogging.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (a *AccessLogging) Log(payloads []gql.RequestData, headers http.Header) {
toLog := map[string]interface{}{}

logHeaders := map[string]interface{}{}
for key, _ := range a.includeHeaders {
for key := range a.includeHeaders {
logHeaders[key] = headers.Values(key)
}

Expand Down

0 comments on commit 5dbd938

Please sign in to comment.