Hi there,
I’m running HA 0.108.9 on Synology Docker and every few seconds I can see something like this in the log files:
All components of Homematic work like they should, but the logfile reports these infos.
The continue without end and I can’t see certain components, nearly all of Homematic.
What can I do to get rid of that ? Am I in trouble ?
Greetings,
Oliver
tom_l
April 29, 2020, 5:00pm
2
These are just information logs. If you want you can change the logging level to warning in your configuration.yaml file.
logger:
default: warn
This will show warnings, errors, etc… but not info logs. You can see the available levels here:
You can even write an automation to change the level from the frontend:
input select:
logging_level:
name: Logging Level
options:
- error
- warning
- info
- debug
Automation:
- id: logging_level
alias: 'Logging Level'
initial_state: true
trigger:
platform: state
entity_id: input_select.logging_level
action:
service: logger.set_default_level
data_template:
level: "{{ trigger.to_state.state }}"