aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Courant.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Courant.c b/src/Courant.c
index 3d7451e..d40fb84 100644
--- a/src/Courant.c
+++ b/src/Courant.c
@@ -72,7 +72,10 @@ void Time_Courant(CCTK_ARGUMENTS)
if (!timestep_outonly)
{
cctkGH->cctk_delta_time = *courant_dt;
- CCTK_VInfo(CCTK_THORNSTRING,"Time step set to %f",cctkGH->cctk_delta_time);
+ if (verbose)
+ {
+ CCTK_VInfo(CCTK_THORNSTRING,"Time step set to %f",cctkGH->cctk_delta_time);
+ }
}
else
{