lf_tx_power.py : expect (FileAdapter) logging level to debug

wifi_ctl_9800_3504.py : expect (FileAdapter) logging level to debug

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2022-06-03 12:39:03 -06:00
committed by shivam
parent be72696317
commit 669ba08ef2
2 changed files with 3 additions and 2 deletions

View File

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