summaryrefslogtreecommitdiff
path: root/smart_home/lights.py
diff options
context:
space:
mode:
Diffstat (limited to 'smart_home/lights.py')
-rw-r--r--smart_home/lights.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/smart_home/lights.py b/smart_home/lights.py
index 80bfffa..ac1cc88 100644
--- a/smart_home/lights.py
+++ b/smart_home/lights.py
@@ -329,6 +329,7 @@ class TPLinkLight(BaseLight):
@timeout(10.0, use_signals=False, error_message="Timed out waiting for tplink.py")
def get_info(self) -> Optional[Dict]:
cmd = self.get_cmdline() + "-c info"
+ logger.debug(f'Getting status of {self.mac} via "{cmd}"...')
out = subprocess.getoutput(cmd)
logger.debug(f'RAW OUT> {out}')
out = re.sub("Sent:.*\n", "", out)