From ee9cf076c382fce135ac0e354ae89a81e63da13c Mon Sep 17 00:00:00 2001 From: ShadowArcanist Date: Fri, 19 Sep 2025 23:28:25 +0530 Subject: [PATCH] Removed debug logging for metrics --- app/Livewire/Project/Shared/Metrics.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Livewire/Project/Shared/Metrics.php b/app/Livewire/Project/Shared/Metrics.php index 9dc944f9d..e5b87b48c 100644 --- a/app/Livewire/Project/Shared/Metrics.php +++ b/app/Livewire/Project/Shared/Metrics.php @@ -33,16 +33,6 @@ class Metrics extends Component try { $cpuMetrics = $this->resource->getCpuMetrics($this->interval); $memoryMetrics = $this->resource->getMemoryMetrics($this->interval); - - // Debug logging - \Log::info('Metrics loadData called', [ - 'chartId' => $this->chartId, - 'cpuMetrics' => $cpuMetrics, - 'memoryMetrics' => $memoryMetrics, - 'cpuEvent' => "refreshChartData-{$this->chartId}-cpu", - 'memoryEvent' => "refreshChartData-{$this->chartId}-memory" - ]); - $this->dispatch("refreshChartData-{$this->chartId}-cpu", [ 'seriesData' => $cpuMetrics, ]);