diff --git a/packages/@runlightyear/lightyear/src/base/baseRequest.ts b/packages/@runlightyear/lightyear/src/base/baseRequest.ts index 0ae35c3c4..df98ef53b 100644 --- a/packages/@runlightyear/lightyear/src/base/baseRequest.ts +++ b/packages/@runlightyear/lightyear/src/base/baseRequest.ts @@ -61,12 +61,6 @@ export default async function baseRequest({ const response = await fetch(url, props); if (!response.ok) { - if (!suppressLogs) - console.error( - `Base request error: ${response.status} ${response.statusText}` - ); - if (!suppressLogs) - console.error(JSON.stringify(await response.json(), null, 2)); throw new BaseRequestError(response); }