mirror of https://github.com/fail2ban/fail2ban
DOC: Improve error logging when specific backend set and fails
parent
3781ff845a
commit
953ebd62c6
|
@ -104,7 +104,9 @@ class Jail:
|
||||||
self.__actions = Actions(self)
|
self.__actions = Actions(self)
|
||||||
return # we are done
|
return # we are done
|
||||||
except ImportError, e:
|
except ImportError, e:
|
||||||
logSys.debug(
|
# Log debug if auto, but error if specific
|
||||||
|
logSys.log(
|
||||||
|
logging.DEBUG if backend == "auto" else logging.ERROR,
|
||||||
"Backend %r failed to initialize due to %s" % (b, e))
|
"Backend %r failed to initialize due to %s" % (b, e))
|
||||||
# log error since runtime error message isn't printed, INVALID COMMAND
|
# log error since runtime error message isn't printed, INVALID COMMAND
|
||||||
logSys.error(
|
logSys.error(
|
||||||
|
|
Loading…
Reference in New Issue