Commit 6849a1dc authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Adds plot_exec_log in test

Showing with 1 addition and 2 deletions
+1 -2
...@@ -64,7 +64,7 @@ def change_config(config_file, verbose=True): ...@@ -64,7 +64,7 @@ def change_config(config_file, verbose=True):
def parse_log(log): def parse_log(log):
print(os.getcwd()) print(log)
msg_started = False msg_started = False
msg_tmp = '' msg_tmp = ''
s = 0 s = 0
...@@ -76,7 +76,6 @@ def parse_log(log): ...@@ -76,7 +76,6 @@ def parse_log(log):
process_id.append(line.split(" | ")[1]) process_id.append(line.split(" | ")[1])
msg.append(":".join(line.split(" | ")[2].split(":")[1:])) msg.append(":".join(line.split(" | ")[2].split(":")[1:]))
tag.append(line.split(" | ")[2].split(":")[0]) tag.append(line.split(" | ")[2].split(":")[0])
print(tag, i)
if tag[i] == 'INFO': if tag[i] == 'INFO':
if 'NEW SESSION' in msg[i]: if 'NEW SESSION' in msg[i]:
s += 1 s += 1
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment