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
The reason for this is the usage of logging.config.dictConfig here without adding "disable_existing_loggers": False to the dict
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.dictConfighere without adding"disable_existing_loggers": Falseto the dict