We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10bcfa8 commit b947b5cCopy full SHA for b947b5c
flow/util/genElapsedTime.py
@@ -32,6 +32,8 @@ def print_log_dir_times(logdir):
32
33
# Loop on all log files in the directory
34
for f in sorted(pathlib.Path(logdir).glob('**/*.log')):
35
+ if "eqy_output" in str(f):
36
+ continue
37
# Extract Elapsed Time line from log file
38
with open(str(f)) as logfile:
39
found = False
@@ -68,7 +70,7 @@ def print_log_dir_times(logdir):
68
70
first = False
69
71
print('%-25s %10s' % (os.path.splitext(os.path.basename(str(f)))[0], elapsedTime))
72
totalElapsed += elapsedTime
-
73
+
74
if totalElapsed != 0:
75
print("%-25s %10s" % ( "Total", totalElapsed ))
76
0 commit comments