Is this expected in the logs?

Hi all,

I have HA in docker and today installed ESPHome, also in docker.

I get the following in the ESPHome Docker Logs and wondering if it is normal and expected.

TIA

2025-01-24 13:13:24,671 INFO Starting dashboard web server on http://0.0.0.0:6052 and configuration dir /config...
2025-01-24 13:13:54,380 INFO 200 GET /version (127.0.0.1) 0.55ms
2025-01-24 13:14:24,468 INFO 200 GET /version (127.0.0.1) 0.55ms
2025-01-24 13:14:54,561 INFO 200 GET /version (127.0.0.1) 0.48ms
2025-01-24 13:15:24,669 INFO 200 GET /version (127.0.0.1) 0.65ms
2025-01-24 13:15:54,771 INFO 200 GET /version (127.0.0.1) 0.72ms
2025-01-24 13:16:24,867 INFO 200 GET /version (127.0.0.1) 0.71ms
2025-01-24 13:16:54,969 INFO 200 GET /version (127.0.0.1) 0.58ms
2025-01-24 13:17:25,039 INFO 200 GET /version (127.0.0.1) 0.41ms
2025-01-24 13:17:55,103 INFO 200 GET /version (127.0.0.1) 0.33ms
2025-01-24 13:18:25,205 INFO 200 GET /version (127.0.0.1) 0.64ms
2025-01-24 13:18:55,305 INFO 200 GET /version (127.0.0.1) 0.45ms

It is normal, yes.
I have not looked into if the log level can be lowered, but the default seems to be to log INFO messages too.

1 Like

Thanks for your reply. I would have thought that INFO messages would not appear in the logs with the following in configuration.yaml:

# Suppresses the logging of some noisy errors and warnings that resolve themselves
logger:
# Logger will now ONLY display the types of logged items: errors, fatal, and critical
  default: warning
  logs: 
    pychromecast: fatal
    custom_components.hacs: error
    homeassistant.loader: error
    custom_components.places: error
    homeassistant.components.http.ban: warning

Thanks again.

Greg

I think it is the log of the addon you are seeing, so it should be on the addon you change the log level.

Yes, you are correct. I will look into that.