aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@c78560ca-4b45-4335-b268-5f3340f3cb52>2004-03-26 19:01:22 +0000
committergoodale <goodale@c78560ca-4b45-4335-b268-5f3340f3cb52>2004-03-26 19:01:22 +0000
commit1843d54cf31b38c104effac3b909ab25dd066b30 (patch)
tree7a4446ae3e044264d8ebbbbecd4b6e60bfc9fed3
parentc62376aa026b678d4fd956c5e77d8db54d9496ee (diff)
Making warnings about using old symmetry stuff less severe.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CartGrid3D/trunk@197 c78560ca-4b45-4335-b268-5f3340f3cb52
-rw-r--r--src/Symmetry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Symmetry.c b/src/Symmetry.c
index 2d9132f..4a2322d 100644
--- a/src/Symmetry.c
+++ b/src/Symmetry.c
@@ -89,7 +89,7 @@ int CartSymGI (const cGH *GH, int gindex)
{
char * groupname = CCTK_GroupName (gindex);
assert (groupname);
- CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn (3, __LINE__, __FILE__, CCTK_THORNSTRING,
"You should not call the symmetry boundary condition routines for the group \"%s\" through the CartSym* routines any more. The symmetry boundary conditions are now applied automatically when a physical boundary condition is applied.", groupname);
free (groupname);
retval = ApplySymmetry (GH, gindex, first_vindex, numvars);
@@ -201,7 +201,7 @@ int CartSymVI (const cGH *GH, int vindex)
{
char * fullname = CCTK_FullName (vindex);
assert (fullname);
- CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn (3, __LINE__, __FILE__, CCTK_THORNSTRING,
"You should not call the symmetry boundary condition routines for the variable \"%s\" through the CartSym* routines any more. The symmetry boundary conditions are now applied automatically when a physical boundary condition is applied.", fullname);
free (fullname);
retval = ApplySymmetry (GH, gindex, vindex, 1);