File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
components/eamxx/src/control Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1620,9 +1620,11 @@ void AtmosphereDriver::run (const int dt) {
1620
1620
EKAT_REQUIRE_MSG (dt>0 , " Error! Input time step must be positive.\n " );
1621
1621
1622
1622
// Print current timestamp information
1623
+ auto end_of_step = m_current_ts + dt;
1623
1624
m_atm_logger->log (ekat::logger::LogLevel::info,
1624
- " Atmosphere step = " + std::to_string (m_current_ts.get_num_steps ()) + " \n " +
1625
- " model start-of-step time = " + m_current_ts.get_date_string () + " " + m_current_ts.get_time_string () + " \n " );
1625
+ " Atmosphere step = " + std::to_string (end_of_step.get_num_steps ()) + " \n " +
1626
+ " model beg-of-step timestamp: " + m_current_ts.get_date_string () + " " + m_current_ts.get_time_string () + " \n "
1627
+ " model end-of-step timestamp: " + end_of_step.get_date_string () + " " + end_of_step.get_time_string () + " \n " );
1626
1628
1627
1629
// Reset accum fields to 0
1628
1630
// Note: at the 1st timestep this is redundant, since we did it at init,
You can’t perform that action at this time.
0 commit comments