chore: remove dev log

This commit is contained in:
H01001000 2025-12-13 17:23:44 -08:00
parent c268536a45
commit ebc9b19344
No known key found for this signature in database
GPG key ID: 3794A5F6B719C5DF

View file

@ -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)