mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
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 error
This commit is contained in:
parent
689ed9d511
commit
beca72e188
1 changed files with 2 additions and 2 deletions
|
|
@ -419,9 +419,9 @@ class Filter(JailThread):
|
|||
% (unixTime, MyTime.time(), self.getFindTime()))
|
||||
break
|
||||
if self.inIgnoreIPList(ip):
|
||||
logSys.notice("[%s] Ignore %s" % (self.jail.name, ip))
|
||||
logSys.info("[%s] Ignore %s" % (self.jail.name, ip))
|
||||
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]),)
|
||||
self.failManager.addFailure(FailTicket(ip, unixTime, lines))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue