Startup Success Message

I would love to see a “Home Assistant Startup Complete” or some sort of message in the home-assistant.log that states when HA is done doing its thing and starting up. Currently I just wait for the error for netdisco on port 8888 and know it is done.

Does it have to be in the log?

You can create a persistent notification or any other notification that triggers on start up.

To get it in the log add this automation:

automation:
  trigger:
    platform: homeassistant
    event: start
  action:
    service: system_log.write
    data:
      message: "Home Assistant started."
2 Likes

Thanks for this. I will add it for sure. I use the log, because I would usually tail it , but I am scripting some of the docker upgrade and startup process and I want it to just report back when done and ready. Using the log is a simple way to know it is ready.