diff --git a/lib/trading/stop-hunt-tracker.ts b/lib/trading/stop-hunt-tracker.ts index 2f45eee..15230f9 100644 --- a/lib/trading/stop-hunt-tracker.ts +++ b/lib/trading/stop-hunt-tracker.ts @@ -153,7 +153,7 @@ export class StopHuntTracker { if (activeStopHunts.length === 0) { // No active stop hunts, stop monitoring to save resources if (this.isMonitoring) { - logger.log('📊 No active stop hunts - pausing monitoring') + console.log('📊 No active stop hunts - pausing monitoring') this.stopMonitoring() } return @@ -606,10 +606,10 @@ export async function startStopHuntTracking(): Promise { }) if (activeCount > 0) { - logger.log(`🎯 Found ${activeCount} active stop hunt(s) - starting revenge tracker`) + console.log(`🎯 Found ${activeCount} active stop hunt(s) - starting revenge tracker`) tracker.startMonitoring() } else { - logger.log('📊 No active stop hunts - tracker will start when needed') + console.log('📊 No active stop hunts - tracker will start when needed') } } catch (error) { console.error('❌ Error starting stop hunt tracker:', error)