aboutsummaryrefslogtreecommitdiff
path: root/src/Parameters.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Parameters.c')
-rw-r--r--src/Parameters.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Parameters.c b/src/Parameters.c
index 55f0e98..f5150c4 100644
--- a/src/Parameters.c
+++ b/src/Parameters.c
@@ -312,9 +312,11 @@ static int ThornParameterPage(const cGH *cctkGH, httpRequest *request, void *dat
while((argument = HTTP_ArgumentWalk(request, first)) != NULL)
{
first = 0;
- fprintf(stderr, "Setting %s::%s to %s\n", thorn,
- HTTP_ArgName( argument),
- HTTP_ArgValue( argument ));
+ CCTK_WARN( 5, "Setting " );
+ CCTK_WARN( 5, thorn );
+ CCTK_WARN( 5, "::" );
+ CCTK_WARN( 5, HTTP_ArgName( argument) );
+ CCTK_WARN( 5, HTTP_ArgValue( argument ) );
HTTP_SteerQueue(thorn, HTTP_ArgName( argument),
HTTP_ArgValue( argument ));
}