Fix log owntrack log flooting ()

This commit is contained in:
Pascal Vizeli 2016-11-04 02:42:22 +01:00 committed by Paulus Schoutsen
parent a01939c6e9
commit d7b3c9c38e

View file

@ -142,9 +142,9 @@ def setup_scanner(hass, config, see):
return data
if max_gps_accuracy is not None and \
convert(data.get('acc'), float, 0.0) > max_gps_accuracy:
_LOGGER.warning('Ignoring %s update because expected GPS '
'accuracy %s is not met: %s',
data_type, max_gps_accuracy, payload)
_LOGGER.info('Ignoring %s update because expected GPS '
'accuracy %s is not met: %s',
data_type, max_gps_accuracy, payload)
return None
if convert(data.get('acc'), float, 1.0) == 0.0:
_LOGGER.warning('Ignoring %s update because GPS accuracy'
@ -247,7 +247,7 @@ def setup_scanner(hass, config, see):
if (max_gps_accuracy is not None and
data['acc'] > max_gps_accuracy):
valid_gps = False
_LOGGER.warning(
_LOGGER.info(
'Ignoring GPS in region exit because expected '
'GPS accuracy %s is not met: %s',
max_gps_accuracy, payload)