From ff9dc1e1b73f14332d8366df8d717b1c2dc21591 Mon Sep 17 00:00:00 2001 From: Richard Dern Date: Wed, 24 Apr 2024 14:37:37 +0200 Subject: [PATCH] Removed debug data --- app/Classes/Bundle.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Classes/Bundle.php b/app/Classes/Bundle.php index 78efa0d..41d4d72 100644 --- a/app/Classes/Bundle.php +++ b/app/Classes/Bundle.php @@ -9,7 +9,6 @@ use App\Services\BundleRenderers\Facades\BundleRenderer; use Exception; use Illuminate\Filesystem\FilesystemAdapter; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Str; use League\Flysystem\StorageAttributes; @@ -180,7 +179,6 @@ public function renderCard() */ public static function findBundles(FilesystemAdapter $disk, ?string $path = '/', bool $recursive = false): array { - $start = microtime(true); $bundles = []; if ($recursive) { @@ -201,14 +199,6 @@ public static function findBundles(FilesystemAdapter $disk, ?string $path = '/', } } - $finish = microtime(true); - $diff = $finish - $start; - - Log::debug('findBundles', [ - 'path' => $path, - 'duration' => $diff, - ]); - return $bundles; }