diff --git a/internal/extractors/pwextractor/pwextractor.go b/internal/extractors/pwextractor/pwextractor.go index 1876b18..8efcec9 100644 --- a/internal/extractors/pwextractor/pwextractor.go +++ b/internal/extractors/pwextractor/pwextractor.go @@ -251,7 +251,7 @@ func (e *PwExtractor) allowHost(rawUrl string) (bool, error) { deny := ip.IsPrivate() || ip.IsLoopback() || ip.IsUnspecified() || ip.IsLinkLocalUnicast() || ip.IsMulticast() deny = deny || e.proxyIP.Equal(ip) if deny { - log.Debugf("Banned address: %s", rawUrl) + log.Warnf("Banned address: %s", rawUrl) return false, nil } }