diff --git a/utils/config.js b/utils/config.js index e0a1b0f..d2f9f7c 100644 --- a/utils/config.js +++ b/utils/config.js @@ -271,7 +271,7 @@ export const Config = new Proxy(config, { if (typeof target[property] === 'string' && target[property].includes(',')) { const keys = target[property].split(',').map(key => key.trim()).filter(Boolean) const selectedKey = keys[Math.floor(Math.random() * keys.length)] - console.log(`[ChatGPT-Plugin] 当前使用的Gemini Key: ${selectedKey}`) + console.log(`[ChatGPT-Plugin] 当前使用的Gemini Key: ${selectedKey.slice(0, 8)}...`) return selectedKey } }