From 10701d221b2e4ffc413c7ec50bdc35aa5efab4c1 Mon Sep 17 00:00:00 2001 From: allen Date: Fri, 18 Apr 2003 17:24:30 +0000 Subject: 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 --- src/Courant.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 { -- cgit v1.2.3