diff --git a/lf_tx_power.py b/lf_tx_power.py index 1d2870a7..e8b87d03 100755 --- a/lf_tx_power.py +++ b/lf_tx_power.py @@ -380,7 +380,7 @@ class FileAdapter(object): # NOTE: data can be a partial line, multiple lines data = data.strip() # ignore leading/trailing whitespace if data: # non-blank - self.logger.info(data) + self.logger.debug(data) def flush(self): pass # leave it to logging to flush properly diff --git a/wifi_ctl_9800_3504.py b/wifi_ctl_9800_3504.py index 30535e8a..9167ded8 100755 --- a/wifi_ctl_9800_3504.py +++ b/wifi_ctl_9800_3504.py @@ -127,7 +127,8 @@ class FileAdapter(object): # NOTE: data can be a partial line, multiple lines data = data.strip() # ignore leading/trailing whitespace if data: # non-blank - self.logger.info(data) + # 6/3/2022 set to debug + self.logger.debug(data) def flush(self): pass # leave it to logging to flush properly