From 6849a1dc7fa5ab3f33b09372471a64daccfa46ca Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Fri, 16 Jun 2023 18:13:46 +0200 Subject: [PATCH] Adds plot_exec_log in test --- ohmpi/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ohmpi/utils.py b/ohmpi/utils.py index 4922473a..fe9487a8 100644 --- a/ohmpi/utils.py +++ b/ohmpi/utils.py @@ -64,7 +64,7 @@ def change_config(config_file, verbose=True): def parse_log(log): - print(os.getcwd()) + print(log) msg_started = False msg_tmp = '' s = 0 @@ -76,7 +76,6 @@ def parse_log(log): process_id.append(line.split(" | ")[1]) msg.append(":".join(line.split(" | ")[2].split(":")[1:])) tag.append(line.split(" | ")[2].split(":")[0]) - print(tag, i) if tag[i] == 'INFO': if 'NEW SESSION' in msg[i]: s += 1 -- GitLab