We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when an entry point plugin fails to load, a UserWarning is diplayed with the following message template:
'Failed to load "{entry_point.name}" from "{entry_point.module_name}".'
This message template does not help much in ascertaining why the entry point failed to load
The message template should be update to also include the error message that caused the failure, after the existing text.
'Failed to load "{entry_point.name}" from "{entry_point.module_name}" with error: {error_msg}'
The text was updated successfully, but these errors were encountered:
rwedge
Successfully merging a pull request may close this issue.
Problem Description
Currently when an entry point plugin fails to load, a UserWarning is diplayed with the following message template:
'Failed to load "{entry_point.name}" from "{entry_point.module_name}".'
This message template does not help much in ascertaining why the entry point failed to load
Expected behavior
The message template should be update to also include the error message that caused the failure, after the existing text.
'Failed to load "{entry_point.name}" from "{entry_point.module_name}" with error: {error_msg}'
The text was updated successfully, but these errors were encountered: