qwenproxy-cli 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qwenproxy-cli",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "High-performance OpenAI & Anthropic compatible API gateway for Qwen with multi-account rotation, interactive TUI, and resilient tool calling.",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
package/src/api/server.ts CHANGED
@@ -750,9 +750,13 @@ export async function startServer(options?: {
750
750
  }
751
751
  }
752
752
 
753
- if (validated > 0 || failed > 0) {
753
+ if (failed > 0) {
754
+ console.warn(
755
+ `⚠️ [Server] Standby validation finished: ${validated} ok, ${failed} failed`,
756
+ );
757
+ } else if (validated > 0) {
754
758
  console.log(
755
- `🪶 [Server] Standby validation complete: ${validated} ok, ${failed} failed`,
759
+ `✅ [Server] Standby validation complete: all ${validated} account(s) ready`,
756
760
  );
757
761
  }
758
762
  })().catch((error) => {