Not able to stop ESPHOME builder logging

Trying to stop ESPHOME device builder addon logs in HASS OS since it is consuming bit high RAM.

These are the logs:

2025-03-08 14:29:19,773 INFO 304 GET /devices (0.0.0.0) 4.85ms
2025-03-08 14:29:24,918 INFO 304 GET /devices (0.0.0.0) 5.31ms
2025-03-08 14:29:29,924 INFO 304 GET /devices (0.0.0.0) 1.80ms

Tried update confg of HASS core -

Also, individual ESPH devices used as BLE proxy.

But nothing seems to work, any help will be highly appreciated.

Can you elaborate how you started logging in HaOS? And what would be the additional RAM occupied (and how did you measure that at all)? :thinking:

Which logs? Can you try to be a little more specific? :person_shrugging:

Please give this post a read to :point_down:

Hi, Thanks for your response.

These are the INFO level logs in ESPHOME device builder addon I tried to suppress.

I have 10 BLE proxies tracking 3 nodes using Bermuda trilateration. Presently the RAM usage is 1.12GB, not that at presently it is a problem but need to know why is it not stopping ‘INFO’ level logging.

You can easily suppress all logs from the device builder add-on (and any ram usage) by stopping it :raised_hands:

Because you didn’t configure the log level from the add-on but the one from ha (core?) and the individual ones from espHome nodes (the ones you get inside the device builder when you click on the logs of a partial node). :bulb:

True, didn’t suppress in addon level config (wasn’t able to find how to do it), however suppressed them in device level logging as posted screenshot. Any idea how to do in addon level?

In the add-on configuration? :thinking:

But I very much doubt that the log level itself is in charge for consuming the ~1GB RAM you see… :eyes:

But as said you can just stop the add-on and only start it when you need to update your nodes etc. :arrow_up:

I see, any suggestion how to reduce usage? Here’s the BLE proxy config.

esphome:
  name: esphome-web-2ea108
  friendly_name: ESPH_ff_mb_room_node
  min_version: 2024.11.0
  name_add_mac_suffix: false

esp32:
  board: esp32dev
  framework:
    type: esp-idf

logger:
  level: ERROR
api:

ota:
- platform: esphome

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

bluetooth_proxy:
  active: True

esp32_ble_tracker:
  scan_parameters:
    interval: 320ms
    window: 30ms
    active: False

    
switch:
  - platform: restart
    name: "Restart_ESPH_ff_mb_room_node"

Thanks, this will help.

Again, the config of the node (ble proxy in your case) does not influence the logs from the esphome device builder add-on! :gear:

The add-ons have their own/dedicated configurations :control_knobs:

If you think a log every 5s is going to be a problem, you probably need to get a bigger potato to run home assistant on.

1 Like