summaryrefslogtreecommitdiff
path: root/src/IO
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-26 22:42:03 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-26 22:42:03 +0000
commit889fb08391a42ca745d7d53945f61f17400ffd25 (patch)
tree81a62ed938619c1f118127ba1983a4a35697a5c6 /src/IO
parent22b8c28bfe2e309f084be38591d359221a689125 (diff)
Give a warning if an IOMethod isn't registered
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2438 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/IO')
-rw-r--r--src/IO/IOMethods.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/IO/IOMethods.c b/src/IO/IOMethods.c
index a81869dc..9658a911 100644
--- a/src/IO/IOMethods.c
+++ b/src/IO/IOMethods.c
@@ -673,6 +673,9 @@ int CactusDefaultOutputVarAsByMethod (cGH *GH,
}
else
{
+ CCTK_VWarn(8,__LINE__,__FILE__,"Cactus",
+ "CactusDefaultOutputVarAsByMethod: Method %s not found "
+ "for output of %s",methodname,var);
retval = -1;
}