From b7e24a4c9aef00a1e2d75095c6b0603606700692 Mon Sep 17 00:00:00 2001 From: Jonathan Petto Date: Tue, 16 Jan 2024 10:01:23 -0600 Subject: [PATCH] perf(logging): remove logging when URL isn't a collection --- src/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index d897b631..3840e178 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -50,7 +50,6 @@ export function collectionFilterValidation(filters: any, properties: string) { export function getCollectionUrlSlug(url: string): string | null { const match = validCollectionUrlRegExp.exec(url); if (!match) { - console.log(`${url} is not a valid collection`); return null; }