We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196058b commit 98dc9c0Copy full SHA for 98dc9c0
1 file changed
pylsp/config/config.py
@@ -32,7 +32,7 @@ def _hookexec(
32
try:
33
return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
34
except Exception as e: # pylint: disable=broad-except
35
- log.warning(f"Failed to load hook {hook_name}: {e}")
+ log.warning(f"Failed to load hook {hook_name}: {e}", exc_info=True)
36
return []
37
38
0 commit comments