Skip to content

Commit aec2685

Browse files
committed
Remove a bit of noise on errors
1 parent 1f99dc3 commit aec2685

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/victron_mqtt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async def async_setup_entry(
101101
try:
102102
await hub.start()
103103
except Exception as exc:
104-
_LOGGER.error("hub.start() failed for entry %s: %s", entry.entry_id, exc, exc_info=True)
104+
_LOGGER.error("hub.start() failed for entry %s: %s", entry.entry_id, exc)
105105
# Clean up partial setup to avoid double setup issues
106106
await async_unload_entry(hass, entry)
107107
raise

0 commit comments

Comments
 (0)