Spaces:
Paused
Paused
icebear0828 Claude Opus 4.6 commited on
Commit ·
a931669
1
Parent(s): 37f2bb7
fix: startup log shows config proxy_api_key instead of random hash
Browse files- src/index.ts +1 -1
src/index.ts
CHANGED
|
@@ -88,7 +88,7 @@ async function main() {
|
|
| 88 |
const user = accountPool.getUserInfo();
|
| 89 |
console.log(` User: ${user?.email ?? "unknown"}`);
|
| 90 |
console.log(` Plan: ${user?.planType ?? "unknown"}`);
|
| 91 |
-
console.log(` Key: ${accountPool.getProxyApiKey()}`);
|
| 92 |
console.log(` Pool: ${poolSummary.active} active / ${poolSummary.total} total accounts`);
|
| 93 |
} else {
|
| 94 |
console.log(` Open http://${displayHost}:${port} to login`);
|
|
|
|
| 88 |
const user = accountPool.getUserInfo();
|
| 89 |
console.log(` User: ${user?.email ?? "unknown"}`);
|
| 90 |
console.log(` Plan: ${user?.planType ?? "unknown"}`);
|
| 91 |
+
console.log(` Key: ${config.server.proxy_api_key ?? accountPool.getProxyApiKey()}`);
|
| 92 |
console.log(` Pool: ${poolSummary.active} active / ${poolSummary.total} total accounts`);
|
| 93 |
} else {
|
| 94 |
console.log(` Open http://${displayHost}:${port} to login`);
|