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
pull/625/head
Steven Hiscocks 2014-02-27 20:47:58 +00:00
parent 689ed9d511
commit beca72e188
1 changed files with 2 additions and 2 deletions

View File

@ -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))