diff --git a/src/engine.c b/src/engine.c index bcc07e3e39b742e0bab288bce6020cbe64f8e01c..7b4dabda3c3b324d117d46aed010af515b5d577b 100644 --- a/src/engine.c +++ b/src/engine.c @@ -2169,13 +2169,11 @@ void engine_step(struct engine *e) { /* Print some information to the screen */ printf( - " %6d %lld %14e %12.7f %12.7f %14e %4d %4d %12lld %12lld %12lld " - "%12lld " - "%21.3f %6d\n", - e->step, e->ti_current, e->time, e->cosmology->a, e->cosmology->z, - e->time_step, e->min_active_bin, e->max_active_bin, e->updates, - e->g_updates, e->s_updates, e->b_updates, e->wallclock_time, - e->step_props); + " %6d %14e %12.7f %12.7f %14e %4d %4d %12lld %12lld %12lld " + "%12lld %21.3f %6d\n", + e->step, e->time, e->cosmology->a, e->cosmology->z, e->time_step, + e->min_active_bin, e->max_active_bin, e->updates, e->g_updates, + e->s_updates, e->b_updates, e->wallclock_time, e->step_props); #ifdef SWIFT_DEBUG_CHECKS fflush(stdout); #endif