aboutsummaryrefslogtreecommitdiff
path: root/modules/title.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-11-14 13:22:11 +0000
committerGravatar jesopo2019-11-14 13:22:49 +0000
commita962fcf434319fbfce766e4672ebad0eaf549bec (patch)
tree8093198190c82d0994e635f6d611024ce48ba599 /modules/title.py
parent`nickname` doesn't exist in `_on_chghost` (diff)
signature
dont print full stacktrace when getting a url's title fails
Diffstat (limited to 'modules/title.py')
-rw-r--r--modules/title.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.py b/modules/title.py
index 4a69e96d..2a74470a 100644
--- a/modules/title.py
+++ b/modules/title.py
@@ -54,7 +54,7 @@ class Module(ModuleManager.BaseModule):
except utils.http.HTTPWrongContentTypeException:
return -1, None
except Exception as e:
- self.log.error("failed to get URL title: %s", [url], exc_info=True)
+ self.log.error("failed to get URL title for %s: %s", [url, str(e)])
return -1, None
if page.data.title: