Filters not being found is now an error instead of a warning.

The log message was labeled as a warning instead of an error and finding out
the real reason why MaxScale didn't start when a filter wasn't found was difficult.
This commit is contained in:
Markus Makela
2015-11-18 11:49:44 +02:00
parent da74bb7c3f
commit eb0cf745ca

View File

@ -1113,7 +1113,7 @@ serviceSetFilters(SERVICE *service, char *filters)
} }
else else
{ {
MXS_WARNING("Unable to find filter '%s' for service '%s'\n", MXS_ERROR("Unable to find filter '%s' for service '%s'\n",
filter_name, service->name); filter_name, service->name);
rval = false; rval = false;
break; break;