Skip to content

Commit 2398574

Browse files
authored
fix: downgrade logger to debug (#7)
Since the user flow will enumerate all the discoveries to see if one matches, we do not want to log at warning level since its expected that some will not match
1 parent d91d3bb commit 2398574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tilt_ble/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _start_update(self, service_info: BluetoothServiceInfo) -> None:
3737
try:
3838
data = manufacturer_data[76]
3939
except KeyError:
40-
_LOGGER.warning("Manufacturer ID 76 not found in data")
40+
_LOGGER.debug("Manufacturer ID 76 not found in data")
4141
return
4242

4343
if data[0] != 0x02 or data[1] != 0x15:

0 commit comments

Comments
 (0)