diff --git a/homeassistant/components/logbook.py b/homeassistant/components/logbook.py index c7a403f12ec77..c599b60cb7831 100644 --- a/homeassistant/components/logbook.py +++ b/homeassistant/components/logbook.py @@ -162,14 +162,14 @@ def humanify(events): continue yield Entry( - event.time_fired, "Home Assistant", "started", + event.time_fired, "Home Assistant", " started", domain=HA_DOMAIN) elif event.event_type == EVENT_HOMEASSISTANT_STOP: if start_stop_events.get(event.time_fired.minute) == 2: - action = "restarted" + action = " restarted" else: - action = "stopped" + action = " stopped" yield Entry( event.time_fired, "Home Assistant", action,