From 068e308409093dd97663e212bd432de452924b92 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Fri, 16 Jun 2023 18:08:40 +0200 Subject: [PATCH] Adds plot_exec_log in test --- ohmpi/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ohmpi/utils.py b/ohmpi/utils.py index 64fa8406..452535c2 100644 --- a/ohmpi/utils.py +++ b/ohmpi/utils.py @@ -75,6 +75,7 @@ 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