client: squelch logging

This commit is contained in:
Koushik Dutta
2023-05-06 12:01:37 -07:00
parent 37b0e46dd0
commit eb5d1ac4f6

View File

@@ -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);