From eb5d1ac4f6506d8d4fa69d60fdb2b92cd7cd58a9 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sat, 6 May 2023 12:01:37 -0700 Subject: [PATCH] client: squelch logging --- packages/client/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index 841c93fab..a9e12c53a 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -104,7 +104,7 @@ export function getCurrentBaseUrl() { const parts = endpointPath.split('/'); const index = parts.findIndex(p => p === 'endpoint'); if (index === -1) { - console.warn('path not recognized, does not contain the segment "endpoint".') + // console.warn('path not recognized, does not contain the segment "endpoint".') return undefined; } const keep = parts.slice(0, index);