From ebc9b193446e40dd7baa7f23242a1bd48a5f4fb5 Mon Sep 17 00:00:00 2001 From: H01001000 Date: Sat, 13 Dec 2025 17:23:44 -0800 Subject: [PATCH] chore: remove dev log --- app/Actions/Shared/ComplexStatusCheck.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/Actions/Shared/ComplexStatusCheck.php b/app/Actions/Shared/ComplexStatusCheck.php index 52905838e..70a985e6a 100644 --- a/app/Actions/Shared/ComplexStatusCheck.php +++ b/app/Actions/Shared/ComplexStatusCheck.php @@ -16,11 +16,6 @@ class ComplexStatusCheck public function handle(Application $application, DockerInspectCache $dockerInspectCache = new DockerInspectCache()) { - Log::info('Docker inspect cache size', [ - 'entries' => count($dockerInspectCache->data), - ]); - dump('Cache entries b4:', count($dockerInspectCache->data)); - $servers = $application->additional_servers; $servers->push($application->destination->server); foreach ($servers as $server) { @@ -78,8 +73,6 @@ class ComplexStatusCheck } } } - - dump('Cache entries after:', count($dockerInspectCache->data)); } private function aggregateContainerStatuses($application, $containers)