diff --git a/app/config/server.ts b/app/config/server.ts index 6544fe5641da..7a0b9613e002 100644 --- a/app/config/server.ts +++ b/app/config/server.ts @@ -96,11 +96,11 @@ function getApiKey(keys?: string) { const randomIndex = Math.floor(Math.random() * apiKeys.length); const apiKey = apiKeys[randomIndex]; if (apiKey) { - console.log( - `[Server Config] using ${randomIndex + 1} of ${ - apiKeys.length - } api key - ${apiKey}`, - ); + // console.log( + // `[Server Config] using ${randomIndex + 1} of ${ + // apiKeys.length + // } api key - ${apiKey}`, + // ); } return apiKey;