1
0
Fork 0

remove logging of warning here. should be handled by AQL query instead

This commit is contained in:
jsteemann 2018-06-28 23:21:17 +02:00
parent ee858a1906
commit a788b81de3
1 changed files with 0 additions and 1 deletions

View File

@ -51,7 +51,6 @@ Result GeoUtils::indexCellsLatLng(VPackSlice const& data, bool isGeoJson,
S2LatLng ll = S2LatLng::FromDegrees(lat.getNumericValue<double>(),
lon.getNumericValue<double>());
if (!ll.is_valid()) {
LOG_TOPIC(WARN, Logger::ENGINES) << "Invalid lat lng pair";
return TRI_ERROR_BAD_PARAMETER;
}
centroid = ll.ToPoint();