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
DVC version is 0.80.0 and I am running Linux. The package was installed from AUR
To reproduce the issue run the following few lines of code
import logging LOGGER = logging.getLogger(__name__) print(LOGGER.disabled) import dvc print(LOGGER.disabled)
which will output
False True
The reason for this is the usage of logging.config.dictConfig here without adding "disable_existing_loggers": False to the dict
logging.config.dictConfig
"disable_existing_loggers": False
The text was updated successfully, but these errors were encountered:
Hi @ttekampe !
Good catch! And thanks for the PR!
Please be aware that AUR package is not officially supported, so consider using some other package.
Sorry, something went wrong.
gurobokum
Successfully merging a pull request may close this issue.
DVC version is 0.80.0 and I am running Linux. The package was installed from AUR
To reproduce the issue run the following few lines of code
which will output
The reason for this is the usage of
logging.config.dictConfig
here without adding"disable_existing_loggers": False
to the dictThe text was updated successfully, but these errors were encountered: