summaryrefslogtreecommitdiffstats
path: root/module/plugins/Crypter.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-25 01:16:52 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-25 01:16:52 +0200
commitc41d4ec4c5935ee702a44e919730971028bf5724 (patch)
treef9e557abaa0c9c0161859b9705ae8414a95ecaef /module/plugins/Crypter.py
parentUse parseTraffic instead parseFileSize in accounts (diff)
downloadpyload-c41d4ec4c5935ee702a44e919730971028bf5724.tar.xz
Fix and improve plugins logging
Diffstat (limited to 'module/plugins/Crypter.py')
-rw-r--r--module/plugins/Crypter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Crypter.py b/module/plugins/Crypter.py
index d2c6c624c..be6d9cbc3 100644
--- a/module/plugins/Crypter.py
+++ b/module/plugins/Crypter.py
@@ -42,7 +42,7 @@ class Crypter(Plugin):
""" create new packages from self.packages """
for pack in self.packages:
- self.log.debug("Parsed package %(name)s with %(len)d links" % { "name" : pack[0], "len" : len(pack[1]) } )
+ self.logDebug("Parsed package %(name)s with %(len)d links" % { "name" : pack[0], "len" : len(pack[1]) } )
links = [x.decode("utf-8") for x in pack[1]]