<div dir="ltr">Hi,<br><br>I have MapServer configured to serve a WFS endpoint with GeoJSON. The data itself is in a PostGIS database.  When I make a query for data that's non-existent, I get an empty feature collection:<br><br>>  curl <a href="http://localhost/mapserv?service=WFS&VERSION=1.1.0&REQUEST=getfeature&typename=some_layer&srsname=EPSG:4326&OUTPUTFORMAT=geojson&some_runtime_substitution_parameter=42">http://localhost/mapserv?service=WFS&VERSION=1.1.0&REQUEST=getfeature&typename=some_layer&srsname=EPSG:4326&OUTPUTFORMAT=geojson&some_runtime_substitution_parameter=42</a><br>>  {<br>>    "type": "FeatureCollection",<br>>    "name": "some_layer",<br>>    "features": []<br>>  }<br><br>This works as anticipated.  What I didn't expect is that MapServer logs an error:<br><br><div>> msQueryByRect(): Search returned no results. No matching record(s) found<br><br>I think this code is being invoked: <a href="https://github.com/mapserver/mapserver/blob/master/mapquery.c#L1287-L1288">https://github.com/mapserver/mapserver/blob/master/mapquery.c#L1287-L1288</a><br><br>I do not think having no results should be considered an error.  Is there a way to silence just this one  type of error?  I couldn't find anything obvious other than other than redirecting stderr to /dev/null or remove it via grep/sed.</div><div><br></div><div>Thanks,<br>Pete<br></div></div>