From 5ea55f7e8941f539f45cfd6260b25479c15134ad Mon Sep 17 00:00:00 2001
From: Guy Khmelnitsky <3136012+GuyKh@users.noreply.github.com>
Date: Mon, 16 Nov 2020 13:31:45 +0200
Subject: [PATCH] Xiaomi Device Tracker - Move "Refreshing device list" to
 debug (#43276)

---
 homeassistant/components/xiaomi/device_tracker.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/homeassistant/components/xiaomi/device_tracker.py b/homeassistant/components/xiaomi/device_tracker.py
index 530140b524f..4fe485b193b 100644
--- a/homeassistant/components/xiaomi/device_tracker.py
+++ b/homeassistant/components/xiaomi/device_tracker.py
@@ -85,12 +85,12 @@ class XiaomiDeviceScanner(DeviceScanner):
 
         Return the list if successful.
         """
-        _LOGGER.info("Refreshing device list")
+        _LOGGER.debug("Refreshing device list")
         result = _retrieve_list(self.host, self.token)
         if result:
             return result
 
-        _LOGGER.info("Refreshing token and retrying device list refresh")
+        _LOGGER.debug("Refreshing token and retrying device list refresh")
         self.token = _get_token(self.host, self.username, self.password)
         return _retrieve_list(self.host, self.token)