diff --git a/src/parser.c b/src/parser.c index 641e2fdac6c286e0c1e1a1c07f4badcb591112c2..1981bcb111b62cff140a8a3942968b71a4656226 100644 --- a/src/parser.c +++ b/src/parser.c @@ -133,8 +133,8 @@ void parser_set_param(struct swift_params *params, const char *namevalue) { int updated = 0; for (int i = 0; i < params->paramCount; i++) { if (strcmp(name, params->data[i].name) == 0) { - message("Using the value '%s' instead of '%s' for the parameter '%s'", - value, params->data[i].value, params->data[i].name); + message("Value of '%s' changed from '%s' to '%s'", + params->data[i].name, params->data[i].value, value); strcpy(params->data[i].value, value); updated = 1; }