Skip to content

Commit

Permalink
Merge pull request #56 from DasBasti/hotfix-device-tracker
Browse files Browse the repository at this point in the history
Device Tracker: fix logging level
  • Loading branch information
DasBasti authored Feb 21, 2024
2 parents f43d595 + 8f3c02a commit ff5fda6
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 ff5fda6

Please sign in to comment.