diff --git a/internal/nodes/http_request_waf.go b/internal/nodes/http_request_waf.go index eba6a7d..7b7c9d1 100644 --- a/internal/nodes/http_request_waf.go +++ b/internal/nodes/http_request_waf.go @@ -275,7 +275,7 @@ func (this *HTTPRequest) checkWAFRequest(firewallPolicy *firewallconfigs.HTTPFir } if err != nil { if !this.canIgnore(err) { - remotelogs.Error("HTTP_REQUEST_WAF", this.rawURI+": "+err.Error()) + remotelogs.Warn("HTTP_REQUEST_WAF", this.rawURI+": "+err.Error()) } return } @@ -362,7 +362,7 @@ func (this *HTTPRequest) checkWAFResponse(firewallPolicy *firewallconfigs.HTTPFi } if err != nil { if !this.canIgnore(err) { - remotelogs.Error("HTTP_REQUEST_WAF", this.rawURI+": "+err.Error()) + remotelogs.Warn("HTTP_REQUEST_WAF", this.rawURI+": "+err.Error()) } return }