mirror of https://github.com/fail2ban/fail2ban
parent
25a61ce632
commit
8f83242c25
|
@ -372,7 +372,7 @@ class Server:
|
||||||
if isinstance(filter_, FileFilter):
|
if isinstance(filter_, FileFilter):
|
||||||
return filter_.getLogPaths()
|
return filter_.getLogPaths()
|
||||||
else: # pragma: systemd no cover
|
else: # pragma: systemd no cover
|
||||||
logSys.info("Jail %s is not a FileFilter instance" % name)
|
logSys.debug("Jail %s is not a FileFilter instance" % name)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def addJournalMatch(self, name, match): # pragma: systemd no cover
|
def addJournalMatch(self, name, match): # pragma: systemd no cover
|
||||||
|
@ -390,7 +390,7 @@ class Server:
|
||||||
if isinstance(filter_, JournalFilter):
|
if isinstance(filter_, JournalFilter):
|
||||||
return filter_.getJournalMatch()
|
return filter_.getJournalMatch()
|
||||||
else:
|
else:
|
||||||
logSys.info("Jail %s is not a JournalFilter instance" % name)
|
logSys.debug("Jail %s is not a JournalFilter instance" % name)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def setLogEncoding(self, name, encoding):
|
def setLogEncoding(self, name, encoding):
|
||||||
|
|
Loading…
Reference in New Issue