Skip to content

Commit 9e5da8a

Browse files
committed
switch an error from fatal to log
Signed-off-by: Geoffroy Vallee <[email protected]>
1 parent 65060b9 commit 9e5da8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/syvalidate/syvalidate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func run(experiments []exp.Config, sysCfg *sys.Config, syConfig *sy.MPIToolConfi
161161
log.Printf("Running experiment %d/%d with host MPI %s and container MPI %s\n", i+1, sysCfg.Nrun, e.HostMPI.Version, e.ContainerMPI.Version)
162162
newRes, err = runExperiment(e, sysCfg, syConfig)
163163
if err != nil {
164-
log.Fatalf("failure during the execution of experiment: %s", err)
164+
log.Printf("[ERROR] failure during the execution of experiment: %s", err)
165165
}
166166
newResults = append(newResults, newRes)
167167

0 commit comments

Comments
 (0)