8000 Include traceback when plugin fails to loading (#250) · Corentin-pro/python-lsp-server@98dc9c0 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 98dc9c0

Browse files
authored
Include traceback when plugin fails to loading (python-lsp#250)
1 parent 196058b commit 98dc9c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylsp/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _hookexec(
3232
try:
3333
return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
3434
except Exception as e: # pylint: disable=broad-except
35-
log.warning(f"Failed to load hook {hook_name}: {e}")
35+
log.warning(f"Failed to load hook {hook_name}: {e}", exc_info=True)
3636
return []
3737

3838

0 commit comments

Comments
 (0)
0