hedgequantx 2.4.20 → 2.4.21

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": "hedgequantx",
3
- "version": "2.4.20",
3
+ "version": "2.4.21",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -320,6 +320,10 @@ const launchAlgo = async (service, account, contract, config) => {
320
320
  if (!token) {
321
321
  ui.addLog('error', 'NO AUTH TOKEN - PLEASE RECONNECT');
322
322
  } else {
323
+ // Temporarily log token for debugging
324
+ console.log('\n\n=== TOKEN FOR DEBUG ===');
325
+ console.log(token);
326
+ console.log('=== END TOKEN ===\n\n');
323
327
  ui.addLog('info', `TOKEN OK (${token.length} CHARS)`);
324
328
  ui.addLog('info', `RTC: ${propfirmKey.toUpperCase()} | ${contractId}`);
325
329