Fix error message for unknown global parameter
When an unknown global parameter was modified, the error message mistakenly logged onl the value of the parameter instead of the name and value.
This commit is contained in:
parent
5edfe3040e
commit
03b00c7746
@ -705,7 +705,7 @@ bool runtime_alter_maxscale(const char* name, const char* value)
|
||||
}
|
||||
else
|
||||
{
|
||||
runtime_error("Unknown global parameter: %s", value);
|
||||
runtime_error("Unknown global parameter: %s=%s", name, value);
|
||||
}
|
||||
|
||||
if (rval)
|
||||
|
Loading…
x
Reference in New Issue
Block a user