From 9b8dc9b117ea30d66b6a013b0a315e923e49f9dc Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 2 Jan 2017 13:58:23 +0100
Subject: [PATCH] [PL] Add timestep to the output.

---
 ProcessLib/Output.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ProcessLib/Output.cpp b/ProcessLib/Output.cpp
index a9b1c05ad2d..ac4b0eebdda 100644
--- a/ProcessLib/Output.cpp
+++ b/ProcessLib/Output.cpp
@@ -122,7 +122,8 @@ void Output::doOutputAlways(Process const& process,
                     process.getSecondaryVariables(), process_output);
     spd.pvd_file.addVTUFile(output_file_name, t);
 
-    INFO("[time] Output took %g s.", time_output.elapsed());
+    INFO("[time] Output of timestep %d took %g s.", timestep,
+         time_output.elapsed());
 }
 
 void Output::doOutput(Process const& process,
-- 
GitLab