summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-12-11 16:16:49 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-12-11 16:16:49 +0000
commit9947e93027f23336d0ba4f94d2d2f984fe68b162 (patch)
treea263ec1fb4bf45e0b712d9ab0195d3bcb098072c
parentcb3f9ad649f4760b73d5db9bb1903d1f3fc01c4e (diff)
Changed warning level to 2 for messages saying that a non-steerable parameter
is not set from a parameter file during recovery. Closes PR/442. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2492 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/main/Parameters.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/Parameters.c b/src/main/Parameters.c
index c5b65aa8..03400a34 100644
--- a/src/main/Parameters.c
+++ b/src/main/Parameters.c
@@ -398,10 +398,11 @@ int CCTK_ParameterSet (const char *name, const char *thorn, const char *value)
from the parameter file are overwritten by the checkpoint file */
if (param->props->steerable == CCTK_STEERABLE_NEVER)
{
- CCTK_VWarn (1, __LINE__, __FILE__, "Cactus",
- "CCTK_ParameterSet: Parameter '%s::%s' is non-steerable "
- "and will be overwritten by its value from the checkpoint "
- "file", thorn, name);
+ CCTK_VWarn (2, __LINE__, __FILE__, "Cactus",
+ "CCTK_ParameterSet: Non-steerable parameter '%s::%s' is "
+ "not set from the parameter file but recovered from the "
+ "checkpoint file",
+ thorn, name);
}
else
{