From e13e7a4477108cefd004a65a8eee28abe0ec28c1 Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 14 Jan 2014 00:02:17 +0100 Subject: reaktor: reflect changes of api in reaktor code --- Reaktor/IRC/ircasy.py | 4 ++-- Reaktor/IRC/reaktor.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Reaktor/IRC/ircasy.py b/Reaktor/IRC/ircasy.py index 3d211ac5..6b478de7 100644 --- a/Reaktor/IRC/ircasy.py +++ b/Reaktor/IRC/ircasy.py @@ -18,7 +18,7 @@ import logging,logging.handlers class asybot(asychat): - def __init__(self, server, port, channels, nickname, realname=False, username=False, hostname=False, hammer_interval=10, alarm_timeout=300, kill_timeout=360): + def __init__(self, server, port, nickname, channels, realname=False, username=False, hostname=False, hammer_interval=10, alarm_timeout=300, kill_timeout=360, loglevel=logging.ERROR): asychat.__init__(self) #logger magic self.log = logging.getLogger('asybot') @@ -26,7 +26,7 @@ class asybot(asychat): formatter = logging.Formatter( '%(filename)s: %(levelname)s: %(message)s') hdlr.setFormatter(formatter) self.log.addHandler(hdlr) - logging.basicConfig(level = logging.DEBUG) + logging.basicConfig(level = loglevel) self.nickname = nickname diff --git a/Reaktor/IRC/reaktor.py b/Reaktor/IRC/reaktor.py index 706d2c83..990d47e5 100644 --- a/Reaktor/IRC/reaktor.py +++ b/Reaktor/IRC/reaktor.py @@ -20,8 +20,7 @@ logging.basicConfig(level = logging.DEBUG if getconf('debug') else logging.INFO) class Reaktor(asybot): def __init__(self): - nick = getconf('irc_nickname') - asybot.__init__(self, getconf('irc_server'), getconf('irc_port'), getconf('irc_channels'), nick, nick, nick, nick, nick, getconf('irc_hammer_interval'), getconf('irc_alarm_timeout'), getconf('irc_kill_timeout')) + asybot.__init__(self, getconf('irc_server'), getconf('irc_port'), getconf('irc_nickname'), getconf('irc_channels'), hammer_interval=getconf('irc_hammer_interval'), alarm_timeout=getconf('irc_alarm_timeout'), kill_timeout=getconf('irc_kill_timeout')) def on_privmsg(self, prefix, command, params, rest): for command in getconf('commands'): -- cgit v1.2.3