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
def _setup_logging(): # pragma: no cover
installation.LOGGER.addHandler(logging.StreamHandler())
installation.LOGGER.setLevel(logging.INFO)
Can we go with
def _setup_logging(): # pragma: no cover
installation.LOGGER.addHandler(logging.StreamHandler())
if not installation.LOGGER.level:
installation.LOGGER.setLevel(logging.INFO)
?
The text was updated successfully, but these errors were encountered:
Can we go with
?
The text was updated successfully, but these errors were encountered: