aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlanfer <lanfer@edbb7e70-9571-45d5-a481-0a560a9b4751>1999-10-05 11:45:33 +0000
committerlanfer <lanfer@edbb7e70-9571-45d5-a481-0a560a9b4751>1999-10-05 11:45:33 +0000
commit29334393f5424b71488f30856f6372d9c62da9ce (patch)
tree4e4b0f07f3973cc23a349b402a858ebdaba9aabc
parent3e223f845998939030f895a25b9db090f626cd4b (diff)
decreased error level for non-registered slicing
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/CoordGauge/trunk@12 edbb7e70-9571-45d5-a481-0a560a9b4751
-rw-r--r--src/Slicing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Slicing.c b/src/Slicing.c
index 6227682..1e85e1b 100644
--- a/src/Slicing.c
+++ b/src/Slicing.c
@@ -246,7 +246,7 @@ void Einstein_ActivateSlicing(cGH *GH) {
/* If slicing is set to "none", only warn level 2 (could be initial data only) */
if (CCTK_Equals(slicing,"none")) {
- CCTK_WARN(2,"No slicing set. Prob. fatal when you continue to evolve.\n");
+ CCTK_WARN(1,"No slicing set. Prob. fatal when you enter evolution loop (itlast>0).\n");
} else {
err = (char*)malloc(256*sizeof(char));
sprintf(err,"%s%s%s%s",
@@ -441,7 +441,7 @@ void Einstein_SetNextSlicing(cGH *GH) {
{
h = Util_GetHandle(Eslicings,slicing,NULL);
- if (h<0) CCTK_WARN(0,"INTERNAL ERROR: only slicing not activ! \n");
+ if (h<0) CCTK_WARN(0,"ERROR: slicing parameter specifies a non-activated/registered slicing! \n");
slic = (struct Einstein_slicing *)Util_GetHandledData(Eslicings,h);
if (!slic)