summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/IRCInterface.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-17 13:53:09 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-17 13:53:09 +0200
commit96e9e7503f34260a2c34dd4f17d03287936e4d31 (patch)
treeec6a7049ec03e91fb856850e0a50cb372d2b3aaf /module/plugins/hooks/IRCInterface.py
parentBitshareCom: fixed #188 (diff)
parentfixed log api call for several plugins (diff)
downloadpyload-96e9e7503f34260a2c34dd4f17d03287936e4d31.tar.xz
Merge pull request #199 from vuolter/pluginlogfix
Fix log api call for several plugins
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r--module/plugins/hooks/IRCInterface.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index a9fc11f53..b9f3c1ba6 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -36,7 +36,7 @@ from pycurl import FORM_FILE
class IRCInterface(Thread, Hook):
__name__ = "IRCInterface"
- __version__ = "0.1"
+ __version__ = "0.11"
__description__ = """connect to irc and let owner perform different tasks"""
__config__ = [("activated", "bool", "Activated", "False"),
("host", "str", "IRC-Server Address", "Enter your server here!"),
@@ -105,8 +105,8 @@ class IRCInterface(Thread, Hook):
for t in self.getConfig("owner").split():
if t.strip().startswith("#"):
self.sock.send("JOIN %s\r\n" % t.strip())
- self.log.info("pyLoad IRC: Connected to %s!" % host)
- self.log.info("pyLoad IRC: Switching to listening mode!")
+ self.logInfo("pyLoad IRC: Connected to %s!" % host)
+ self.logInfo("pyLoad IRC: Switching to listening mode!")
try:
self.main_loop()
@@ -167,15 +167,15 @@ class IRCInterface(Thread, Hook):
# HANDLE CTCP ANTI FLOOD/BOT PROTECTION
if msg["text"] == "\x01VERSION\x01":
- self.log.debug("Sending CTCP VERSION.")
+ self.logDebug("Sending CTCP VERSION.")
self.sock.send("NOTICE %s :%s\r\n" % (msg['origin'], "pyLoad! IRC Interface"))
return
elif msg["text"] == "\x01TIME\x01":
- self.log.debug("Sending CTCP TIME.")
+ self.logDebug("Sending CTCP TIME.")
self.sock.send("NOTICE %s :%d\r\n" % (msg['origin'], time.time()))
return
elif msg["text"] == "\x01LAG\x01":
- self.log.debug("Received CTCP LAG.") # don't know how to answer
+ self.logDebug("Received CTCP LAG.") # don't know how to answer
return
trigger = "pass"
@@ -195,7 +195,7 @@ class IRCInterface(Thread, Hook):
for line in res:
self.response(line, msg["origin"])
except Exception, e:
- self.log.error("pyLoad IRC: "+ repr(e))
+ self.logError("pyLoad IRC: "+ repr(e))
def response(self, msg, origin=""):