You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While there is a logging_level setting in the config file, it does not seem to be taken into account by the code.
The only setting which seems to have an effect on the loggers is buried in the dependencies under .venv/lib/python3.9/site-packages/singer/logging.conf which has a level=INFO line which can be changed to adjust the log level. This is less than ideal :)
The text was updated successfully, but these errors were encountered:
It looks like the reason for this bug is that, while self.LOGGER.setLevel() is called correctly, its value is overwritten somewhere afterwards with INFO.
While there is a
logging_level
setting in the config file, it does not seem to be taken into account by the code.The only setting which seems to have an effect on the loggers is buried in the dependencies under
.venv/lib/python3.9/site-packages/singer/logging.conf
which has alevel=INFO
line which can be changed to adjust the log level. This is less than ideal :)The text was updated successfully, but these errors were encountered: