mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-12-03 03:21:47 +00:00
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations. - Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages. - Added relevant links and issue references where applicable to enhance user guidance and support.
39 lines
1.1 KiB
YAML
Executable File
39 lines
1.1 KiB
YAML
Executable File
#-------------------------------------------
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Logger Controls - Realtime debugging helpers.
|
|
#-------------------------------------------
|
|
######################################################################
|
|
## Adjust Home Assistant log level from the UI.
|
|
######################################################################
|
|
input_select:
|
|
log_level:
|
|
name: Log Level
|
|
options:
|
|
- critical
|
|
- fatal
|
|
- error
|
|
- warning
|
|
- warn
|
|
- info
|
|
- debug
|
|
- notset
|
|
initial: warn
|
|
icon: mdi:bug
|
|
###################################
|
|
## Dynamically set the log levels without having to restart HASS or edit configuration.yaml
|
|
#- Thanks @VDRainer
|
|
###################################
|
|
automation:
|
|
- alias: Log Level
|
|
id: 8196e9d4-5174-492e-8523-6ef70ccbd8dd
|
|
trigger:
|
|
platform: state
|
|
entity_id:
|
|
- input_select.log_level
|
|
# - input_select.log_component
|
|
action:
|
|
- service: logger.set_level
|
|
data:
|
|
homeassistant.components: "{{ states.input_select.log_level.state }}"
|