diff --git a/ChangeLog b/ChangeLog index d1e280a1..157fd0d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,7 @@ ver. 0.8.3 (2008/??/??) - stable - Fixed PID file while started in daemon mode. Thanks to Christian Jobic who submitted a similar patch. - Fixed "fail2ban-client get logpath". Bug #1916986. +- Changed some log levels. ver. 0.8.2 (2008/03/06) - stable ---------- diff --git a/server/action.py b/server/action.py index d2c3ca5c..f55d9a6d 100644 --- a/server/action.py +++ b/server/action.py @@ -106,7 +106,7 @@ class Action: def setActionStart(self, value): self.__actionStart = value - logSys.info("Set actionStart = %s" % value) + logSys.debug("Set actionStart = %s" % value) ## # Get the "start" command. @@ -135,7 +135,7 @@ class Action: def setActionBan(self, value): self.__actionBan = value - logSys.info("Set actionBan = %s" % value) + logSys.debug("Set actionBan = %s" % value) ## # Get the "ban" command. @@ -160,7 +160,7 @@ class Action: def setActionUnban(self, value): self.__actionUnban = value - logSys.info("Set actionUnban = %s" % value) + logSys.debug("Set actionUnban = %s" % value) ## # Get the "unban" command. @@ -185,7 +185,7 @@ class Action: def setActionCheck(self, value): self.__actionCheck = value - logSys.info("Set actionCheck = %s" % value) + logSys.debug("Set actionCheck = %s" % value) ## # Get the "check" command. @@ -202,7 +202,7 @@ class Action: def setActionStop(self, value): self.__actionStop = value - logSys.info("Set actionStop = %s" % value) + logSys.debug("Set actionStop = %s" % value) ## # Get the "stop" command.