From a788b81de3a981fa932e8ac26163278b167c4bf0 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Thu, 28 Jun 2018 23:21:17 +0200 Subject: [PATCH] remove logging of warning here. should be handled by AQL query instead --- lib/Geo/GeoUtils.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Geo/GeoUtils.cpp b/lib/Geo/GeoUtils.cpp index 9c465d540e..45f2eadb60 100644 --- a/lib/Geo/GeoUtils.cpp +++ b/lib/Geo/GeoUtils.cpp @@ -51,7 +51,6 @@ Result GeoUtils::indexCellsLatLng(VPackSlice const& data, bool isGeoJson, S2LatLng ll = S2LatLng::FromDegrees(lat.getNumericValue(), lon.getNumericValue()); if (!ll.is_valid()) { - LOG_TOPIC(WARN, Logger::ENGINES) << "Invalid lat lng pair"; return TRI_ERROR_BAD_PARAMETER; } centroid = ll.ToPoint();