Make dicttoxml logging less verbose (#17446)

This commit is contained in:
Ville Skyttä 2018-10-15 12:25:38 +03:00 committed by Paulus Schoutsen
parent 4fce051838
commit 31981fde7e

View File

@ -21,6 +21,9 @@ from homeassistant.util import Throttle
_LOGGER = logging.getLogger(__name__)
# dicttoxml (used by huawei-lte-api) has uselessly verbose INFO level.
logging.getLogger('dicttoxml').setLevel(logging.WARNING)
REQUIREMENTS = ['huawei-lte-api==1.0.16']
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=10)