Use debug/warning instead of info log level in components [e] (#125970)
This commit is contained in:
parent
0221112879
commit
d070fd40a3
6 changed files with 9 additions and 9 deletions
|
@ -79,12 +79,12 @@ def setup_platform(
|
|||
|
||||
def monitor_stop(event: Event) -> None:
|
||||
"""Stop the monitor thread."""
|
||||
_LOGGER.info("Stopping scanner for Eddystone beacons")
|
||||
_LOGGER.debug("Stopping scanner for Eddystone beacons")
|
||||
mon.stop()
|
||||
|
||||
def monitor_start(event: Event) -> None:
|
||||
"""Start the monitor thread."""
|
||||
_LOGGER.info("Starting scanner for Eddystone beacons")
|
||||
_LOGGER.debug("Starting scanner for Eddystone beacons")
|
||||
mon.start()
|
||||
|
||||
add_entities(devices)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue