diff --git a/app/Validators/Extensions/Polygons/GeometryType.php b/app/Validators/Extensions/Polygons/GeometryType.php index a597016d..0ab041c5 100644 --- a/app/Validators/Extensions/Polygons/GeometryType.php +++ b/app/Validators/Extensions/Polygons/GeometryType.php @@ -5,7 +5,6 @@ use App\Models\V2\PolygonGeometry; use App\Validators\Extensions\Extension; use Illuminate\Support\Facades\DB; -use Illuminate\Support\Facades\Log; class GeometryType extends Extension { @@ -29,7 +28,6 @@ public static function passes($attribute, $value, $parameters, $validator): bool $types = []; foreach ($value as $feature) { $type = self::getGeometryType($feature); - Log::info("Geometry type: $type"); if (! in_array($type, [ self::VALID_TYPE_POLYGON, self::VALID_TYPE_MULTIPOLYGON,