Skip to content

Commit

Permalink
Device Tracker: fix logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
DasBasti committed Feb 21, 2024
1 parent f43d595 commit 8f3c02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/smarthashtag/device_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async def async_setup_entry(hass: HomeAssistant, entry, async_add_entities):
entities = []

entities.append(SmartVehicleLocation(coordinator, vehicle))
LOGGER.warning(f"Adding vehicle {vehicle} to device tracker")
LOGGER.debug(f"Adding vehicle {vehicle} to device tracker")
async_add_entities(entities, update_before_add=True)


Expand Down

0 comments on commit 8f3c02a

Please sign in to comment.