mirror of https://github.com/fail2ban/fail2ban
DOC: Change Found and Ignore message to INFO rather than NOTICE
This was the original proposal in gh-621 but was put to NOTICE in errorpull/625/head
parent
689ed9d511
commit
beca72e188
|
@ -419,9 +419,9 @@ class Filter(JailThread):
|
||||||
% (unixTime, MyTime.time(), self.getFindTime()))
|
% (unixTime, MyTime.time(), self.getFindTime()))
|
||||||
break
|
break
|
||||||
if self.inIgnoreIPList(ip):
|
if self.inIgnoreIPList(ip):
|
||||||
logSys.notice("[%s] Ignore %s" % (self.jail.name, ip))
|
logSys.info("[%s] Ignore %s" % (self.jail.name, ip))
|
||||||
continue
|
continue
|
||||||
logSys.notice("[%s] Found %s" % (self.jail.name, ip))
|
logSys.info("[%s] Found %s" % (self.jail.name, ip))
|
||||||
## print "D: Adding a ticket for %s" % ((ip, unixTime, [line]),)
|
## print "D: Adding a ticket for %s" % ((ip, unixTime, [line]),)
|
||||||
self.failManager.addFailure(FailTicket(ip, unixTime, lines))
|
self.failManager.addFailure(FailTicket(ip, unixTime, lines))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue