diff --git a/dune/fem-dg/stepper/baseevolution.hh b/dune/fem-dg/stepper/baseevolution.hh
index 62912b9d40d422d543e7de105a73153a11cb948f..2f94f9c3c49198283302cd1b44277b3d7c7d95db 100644
--- a/dune/fem-dg/stepper/baseevolution.hh
+++ b/dune/fem-dg/stepper/baseevolution.hh
@@ -372,7 +372,7 @@ public:
       // Check that no NAN have been generated
       checkDofsValid( tp, loop );
 
-      if( (printCount > 0) && (timeStep % printCount == 0))
+      if( (printCount > 0) && (((timeStep+1) % printCount) == 0))
       {
         UInt64Type grSize = gridSize();
         if( grid.comm().rank() == 0 )