Use debug/warning instead of info log level in components [e] (#125970)

This commit is contained in:
Jan-Philipp Benecke 2024-09-14 23:41:06 +02:00 committed by GitHub
parent 0221112879
commit d070fd40a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 9 additions and 9 deletions

View file

@ -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)