cisco_wifi_ctl.py , lf_cisco_power.py have stdout use basicConfig, it will

duplicate log messages will need to address later.
This commit is contained in:
Chuck SmileyRekiere
2020-11-19 17:38:50 -07:00
parent 0d10dcc862
commit 9d601656cd
2 changed files with 3 additions and 3 deletions

View File

@@ -150,7 +150,7 @@ def main():
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(formatter)
logg.addHandler(file_handler)
logg.addHandler(logging.StreamHandler(sys.stdout))
logging.basicConfig(format=FORMAT, handlers=[console_handler])
else:
# stdout logging
logging.basicConfig(format=FORMAT, handlers=[console_handler])