From 35c2d7fc8a308dac77f13b34a446a46747f44b71 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Fri, 5 Dec 2025 18:39:49 +0100 Subject: [PATCH] fix: Stop hunt tracker logs also need console.log for production visibility --- lib/trading/stop-hunt-tracker.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)