Skip to content

Commit b218215

Browse files
authored
Prefer info log message for missing optional modules (#266)
1 parent 6501e9e commit b218215

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
@@ -71,7 +71,7 @@ def __init__(self, root_uri, init_opts, process_id, capabilities):
7171
try:
7272
entry_point.load()
7373
except Exception as e: # pylint: disable=broad-except
74-
log.warning("Failed to load %s entry point '%s': %s", PYLSP, entry_point.name, e)
74+
log.info("Failed to load %s entry point '%s': %s", PYLSP, entry_point.name, e)
7575
self._pm.set_blocked(entry_point.name)
7676

7777
# Load the entry points into pluggy, having blocked any failing ones

0 commit comments

Comments
 (0)