Fix warn message to have correct name

This commit is contained in:
2023-12-22 19:09:58 -06:00
parent a37a0b489d
commit b1e68017cc

View File

@ -62,11 +62,9 @@ public class QuerySavedFilterProcess implements BackendStep
{
return (new QProcessMetaData()
.withName("querySavedFilter")
.withStepList(List.of(
new QBackendStepMetaData()
.withStepList(List.of(new QBackendStepMetaData()
.withCode(new QCodeReference(QuerySavedFilterProcess.class))
.withName("query")
)));
.withName("query"))));
}
@ -110,7 +108,7 @@ public class QuerySavedFilterProcess implements BackendStep
}
catch(Exception e)
{
LOG.warn("Error deleting saved filter", e);
LOG.warn("Error querying for saved filter", e);
throw (e);
}
}