summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-20 21:52:34 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-20 21:52:34 +0000
commit53e4216e86c358766497bc5b2109005cec35be93 (patch)
tree921cfc197f5d1ef803f2f50140d639283aba0264
parentdc7b359b0a1f904bb88cd01485fc72df39d3523f (diff)
Print the parameter file name before the messages about ActiveThorns
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2374 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/main/ActiveThorns.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/ActiveThorns.c b/src/main/ActiveThorns.c
index c61350f3..a9890541 100644
--- a/src/main/ActiveThorns.c
+++ b/src/main/ActiveThorns.c
@@ -294,12 +294,16 @@ int CCTKi_RegisterThorn(const struct iAttributeList *attributes)
int CCTKi_ActivateThorn(const char *name)
{
int retval;
+ char filename[500];
t_sktree *thornnode;
t_sktree *impnode;
struct THORN *thorn;
struct IMPLEMENTATION *imp;
+ CCTK_ParameterFilename(500,filename);
+
+ printf("Running parameter file %s\n",filename);
printf("Activating thorn %s...", name);
/* Find the thorn */