diff --git a/app/api/automation/position-monitor/route.js b/app/api/automation/position-monitor/route.js index 34bba52..613d317 100644 --- a/app/api/automation/position-monitor/route.js +++ b/app/api/automation/position-monitor/route.js @@ -81,7 +81,6 @@ export async function GET() { } } else { // NO POSITION DETECTED - Check for orphaned orders and cleanup - console.log('📋 No active positions detected - checking for orphaned orders...'); try { // Check for any remaining orders when we have no positions @@ -97,6 +96,7 @@ export async function GET() { const activeOrders = ordersData.orders || []; if (activeOrders.length > 0) { + console.log('📋 No active positions detected - checking for orphaned orders...'); console.log(`🎯 Found ${activeOrders.length} orphaned orders - triggering cleanup...`); // Trigger automated cleanup of orphaned orders @@ -140,7 +140,7 @@ export async function GET() { }; } } else { - console.log('✅ No orphaned orders found'); + // Only log occasionally when no orders found (not every check) result.orphanedOrderCleanup = { triggered: false, success: true, diff --git a/app/automation-v2/page.js b/app/automation-v2/page.js index 196b481..889319d 100644 --- a/app/automation-v2/page.js +++ b/app/automation-v2/page.js @@ -40,8 +40,7 @@ export default function AutomationPageV2() { fetchBalance() fetchPositions() fetchMonitorData() - fetchMonitorData() - }, 30000) + }, 300000) // 5 minutes instead of 30 seconds return () => clearInterval(interval) }, [])