summaryrefslogtreecommitdiff
path: root/src/main/ScheduleInterface.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 09:02:10 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 09:02:10 +0000
commit295247798ad3e1ef841ac7e04d219ac3cb146e8b (patch)
tree748746783922ecb9e8a27695c421cf4a6e212328 /src/main/ScheduleInterface.c
parent22d2e67591515ab4bfbbb4a072798a398e66b131 (diff)
Change "Total time" to "Total time for simulation" in timer report
so it can be grepped for easily. Removing a debug statement I think I left in last commit git-svn-id: http://svn.cactuscode.org/flesh/trunk@2451 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ScheduleInterface.c')
-rw-r--r--src/main/ScheduleInterface.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index c41eaba5..3b1b9296 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -971,7 +971,7 @@ int CCTK_SchedulePrintTimes(const char *where)
{
CCTK_TimerStopI (total_timer);
CCTK_TimerI (total_timer, timerinfo);
- CCTKi_SchedulePrintTimerInfo (timerinfo, NULL, "", "Total time");
+ CCTKi_SchedulePrintTimerInfo (timerinfo, NULL, "", "Total time for simulation");
/* just in case this is not at termination yet ... */
CCTK_TimerStartI (total_timer);
@@ -2090,7 +2090,6 @@ static int CCTKi_ScheduleCallExit(t_attribute *attribute,
last = vindex + CCTK_NumVarsInGroupI(attribute->FunctionData.TriggerGroups[i]) - 1;
for(; vindex <= last ; vindex++)
{
- printf("Triggering for group %s\n",CCTK_GroupName(attribute->FunctionData.TriggerGroups[i]));
CCTKi_TriggerAction(data->GH, vindex);
}
}