Skip to content

Commit

Permalink
(chore) calmed some warnings down to debug. (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
agittins authored Feb 27, 2024
1 parent bbe92a6 commit de71f9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/bermuda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ async def _async_update_data(self):
device = self._get_device(format_mac(address))
if device is not None:
if not device.create_sensor_done:
_LOGGER.warning("Firing device_new for %s", device.name)
_LOGGER.debug("Firing device_new for %s", device.name)
# self.hass.async_run_job(
async_dispatcher_send(
self.hass, SIGNAL_DEVICE_NEW, device.address, self.scanner_list
Expand Down Expand Up @@ -762,7 +762,7 @@ def _refresh_scanners(
scandev = self._get_device(found_address)
if scandev is None:
# It's a new scanner, we will need to update our saved config.
_LOGGER.warning("New Scanner: %s", found_address)
_LOGGER.debug("New Scanner: %s", found_address)
update_scannerlist = True
scandev = self._get_or_create_device(found_address)
scandev_orig = scandev
Expand Down Expand Up @@ -792,7 +792,7 @@ def _refresh_scanners(
if device.is_scanner:
scanners[device.address] = device.to_dict()
self.scanner_list.append(device.address)
_LOGGER.warning(
_LOGGER.debug(
"Replacing config data scanners was %s now %s",
self.config_entry.data.get(CONFDATA_SCANNERS, {}),
scanners,
Expand Down

0 comments on commit de71f9e

Please sign in to comment.