From 9480fc2b2f740c2f6e812caee32687007d519088 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 30 May 2025 09:11:40 +0200 Subject: [PATCH] refactor(environment-variables): remove debug logging from bulk submit handling for cleaner code --- .../Project/Shared/EnvironmentVariable/All.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Livewire/Project/Shared/EnvironmentVariable/All.php b/app/Livewire/Project/Shared/EnvironmentVariable/All.php index 699dca187..3b6d8b937 100644 --- a/app/Livewire/Project/Shared/EnvironmentVariable/All.php +++ b/app/Livewire/Project/Shared/EnvironmentVariable/All.php @@ -178,16 +178,6 @@ class All extends Component } } - // Debug information - \Log::info('Environment variables update status', [ - 'deletedCount' => $deletedCount, - 'updatedCount' => $updatedCount, - 'deletedPreviewCount' => $deletedPreviewCount ?? 0, - 'updatedPreviewCount' => $updatedPreviewCount ?? 0, - 'changesMade' => $changesMade, - 'errorOccurred' => $errorOccurred, - ]); - // Only show success message if changes were actually made and no errors occurred if ($changesMade && ! $errorOccurred) { $this->dispatch('success', 'Environment variables updated.');