From b21f0f18d760b73ed90ff00e6fa3efca8b9a3174 Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Wed, 17 Dec 2025 09:30:30 -0500 Subject: [PATCH] Hotfix v1.13.1 (fix for ping failing) (#2561) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- app/Actions/PingHostname.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Actions/PingHostname.php b/app/Actions/PingHostname.php index 7707f1abe..5bbf15ddf 100644 --- a/app/Actions/PingHostname.php +++ b/app/Actions/PingHostname.php @@ -2,6 +2,7 @@ namespace App\Actions; +use Illuminate\Support\Facades\Log; use Lorisleiva\Actions\Concerns\AsAction; use Spatie\Ping\Ping; use Spatie\Ping\PingResult; @@ -22,6 +23,11 @@ public function handle(?string $hostname = null, int $count = 1): PingResult count: $count, ))->run(); + Log::info('Pinged hostname', [ + 'host' => $hostname, + 'data' => $ping->toArray(), + ]); + return $ping; } }