Skip to content
Snippets Groups Projects
Commit d05e5c3d authored by Stuart Mcalpine's avatar Stuart Mcalpine
Browse files

Now outputs message for last timestep in non-cosmo case

parent 3dd67a94
No related branches found
No related tags found
1 merge request!874Stf output times
......@@ -187,7 +187,11 @@ void output_list_read_next_time(struct output_list *t, const struct engine *e,
if (time == time_end) {
t->final_step_dump = 1;
if (e->verbose)
message("Next output time for %s set to a=%e.", name, time_end);
if (is_cosmo) {
message("Next output time for %s set to a=%e.", name, time_end);
} else {
message("Next output time for %s set to t=%e.", name, time_end);
}
}
/* Deal with last statistics */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment