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
|
@@ -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
|
|