aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);