aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2003-04-18 17:24:30 +0000
committerallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2003-04-18 17:24:30 +0000
commit10701d221b2e4ffc413c7ec50bdc35aa5efab4c1 (patch)
tree4dc1bb218b7655a58eeb6dbbed691ed3c3f046c3
parent7a4d027bf05e9c29ae5f654ab47e6283c6385984 (diff)
Only print timestep if in verbose mode.
Fixes Cactus/1430 git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Time/trunk@54 5633253d-7678-4964-a54d-f87795f8ee59
-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
{