Ignore integration test results in code coverage report.
[python_utils.git] / smart_home / lights.py
index 80bfffa9db61b1639d5ff19aa9a12df387bdb90d..ac1cc885f94973a74f3b7dabcb41f45a9dbac957 100644 (file)
@@ -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)