lf_check.py : update to log pathing

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-08-12 07:48:31 -06:00
parent 43717cf31f
commit 47c1df1fb9

View File

@@ -1017,10 +1017,10 @@ blog: http://{blog}:2368
self.logger.info("cmd_args {}".format(cmd_args))
if self.outfile_name is not None:
stdout_log_txt = self.log_path + "{}-{}-stdout.txt".format(self.outfile_name,test)
stdout_log_txt = os.path.joing(self.log_path, "{}-{}-stdout.txt".format(self.outfile_name,test))
self.logger.info("stdout_log_txt: {}".format(stdout_log_txt))
stdout_log = open(stdout_log_txt, 'a')
stderr_log_txt = self.log_path + "{}-{}-stderr.txt".format(self.outfile_name,test)
stderr_log_txt = os.path.join(self.log_path, "{}-{}-stderr.txt".format(self.outfile_name,test))
self.logger.info("stderr_log_txt: {}".format(stderr_log_txt))
stderr_log = open(stderr_log_txt, 'a')