From b70a78b7aa04f29bcc5ee85c452f532ff1fb21e4 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 14 May 2024 13:04:17 +0200 Subject: [PATCH] chore: Remove debug logging statements in Kernel.php --- app/Console/Kernel.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index d67a26720..0c9f59f90 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -140,13 +140,11 @@ class Kernel extends ConsoleKernel } if ($application) { if (str($application->status)->contains('running') === false) { - ray('application not running, skipping'); continue; } } if ($service) { if (str($service->status)->contains('running') === false) { - ray('service not running, skipping'); continue; } }