Skip to content

Commit

Permalink
Prefer info log message for missing optional modules (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
doolio committed Sep 13, 2022
1 parent 6501e9e commit b218215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylsp/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, root_uri, init_opts, process_id, capabilities):
try:
entry_point.load()
except Exception as e: # pylint: disable=broad-except
log.warning("Failed to load %s entry point '%s': %s", PYLSP, entry_point.name, e)
log.info("Failed to load %s entry point '%s': %s", PYLSP, entry_point.name, e)
self._pm.set_blocked(entry_point.name)

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

0 comments on commit b218215

Please sign in to comment.