Skip to content

Commit

Permalink
Merge pull request #730 from bigredfrog/discarding
Browse files Browse the repository at this point in the history
fix: demote discard device logging from error to warning
  • Loading branch information
shauneccles committed Feb 11, 2024
2 parents bee0a6d + df24e80 commit cb94b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledfx/devices/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ async def add_new_device(self, device_type, device_config):
self._ledfx.loop, self._ledfx.thread_executor, device_ip
)
except ValueError:
_LOGGER.error(f"Discarding device {device_ip}")
_LOGGER.warning(f"Discarding device {device_ip}")
return

for existing_device in self._ledfx.devices.values():
Expand Down

0 comments on commit cb94b4d

Please sign in to comment.