From 678e7f6d76af8305c17e5a2c210d5501f1ceef86 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 7 Apr 2008 22:25:16 +0000 Subject: [PATCH] - Changed some log level. git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/branches/FAIL2BAN-0_8@682 a942ae1a-1317-0410-a47c-b1dcaea8d605 --- ChangeLog | 1 + server/action.py | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2a8b42b2..71dce5db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ From 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 438d6fae..41c85241 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.