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
dictConfig
Calls to logging.config.dictConfig should follow a schema defined in the docs: https://docs.python.org/3/library/logging.config.html#dictionary-schema-details
logging.config.dictConfig
Perhaps this plugin can do some fast-and-cheap validation against this schema to prevent common issues, such as missing the version key.
version
Django’s LOGGING setting is also passed to dictConfig, if LOGGING_CONFIG is unchanged, so we may be able to validate that too.
LOGGING
LOGGING_CONFIG
The text was updated successfully, but these errors were encountered:
Potential checks:
1
difflib.get_close_matches
incremental
True
formatters
filters
logger.handlers
handlers.filters
logger.level
INFO
WARNING
get_close_matches
Sorry, something went wrong.
No branches or pull requests
Description
Calls to
logging.config.dictConfig
should follow a schema defined in the docs: https://docs.python.org/3/library/logging.config.html#dictionary-schema-detailsPerhaps this plugin can do some fast-and-cheap validation against this schema to prevent common issues, such as missing the
version
key.Django’s
LOGGING
setting is also passed todictConfig
, ifLOGGING_CONFIG
is unchanged, so we may be able to validate that too.The text was updated successfully, but these errors were encountered: