From 9947e93027f23336d0ba4f94d2d2f984fe68b162 Mon Sep 17 00:00:00 2001 From: tradke Date: Tue, 11 Dec 2001 16:16:49 +0000 Subject: 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 --- src/main/Parameters.c | 9 +++++---- 1 file 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 { -- cgit v1.2.3