summaryrefslogtreecommitdiff
path: root/src/main/Groups.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-14 16:37:11 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-14 16:37:11 +0000
commit9f5b3994183eb8b5854157ca2f2ca631d37b33ab (patch)
treebdd9aa8f8943a4863c9b105fd8407c4e533f3b32 /src/main/Groups.c
parent2927a92e53940cb2a81c97972770bdeec49734cb (diff)
Moved level 2 warning to level 6 warning if no group/variable found with given index. Maybe we need to suggest how to choose appropriate levels in the users guide (not that we seem able to decide ourselves) eg use 6 and over for more info like statements such as these.
G. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2183 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Groups.c')
-rw-r--r--src/main/Groups.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/Groups.c b/src/main/Groups.c
index 775ef9de..26bdca10 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -235,7 +235,7 @@ int CCTK_GroupIndex (const char *fullgroupname)
if (retval < 0)
{
- CCTK_VWarn (2, __LINE__, __FILE__, "Cactus",
+ CCTK_VWarn (6, __LINE__, __FILE__, "Cactus",
"CCTK_GroupIndex: No group named '%s' found",
fullgroupname);
}
@@ -310,7 +310,7 @@ int CCTK_VarIndex (const char *fullvarname)
if (retval < 0)
{
- CCTK_VWarn (2, __LINE__, __FILE__, "Cactus",
+ CCTK_VWarn (6, __LINE__, __FILE__, "Cactus",
"CCTK_VarIndex: No variable named '%s' found",
fullvarname);
}