diff options
author | 2014-10-25 01:16:52 +0200 | |
---|---|---|
committer | 2014-10-25 01:16:52 +0200 | |
commit | c41d4ec4c5935ee702a44e919730971028bf5724 (patch) | |
tree | f9e557abaa0c9c0161859b9705ae8414a95ecaef /module/plugins/Crypter.py | |
parent | Use parseTraffic instead parseFileSize in accounts (diff) | |
download | pyload-c41d4ec4c5935ee702a44e919730971028bf5724.tar.xz |
Fix and improve plugins logging
Diffstat (limited to 'module/plugins/Crypter.py')
-rw-r--r-- | module/plugins/Crypter.py | 2 |
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]] |