Chore: clean up ping logs (#2629)

Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
This commit is contained in:
Sven van Ginkel
2026-01-04 15:32:11 +01:00
committed by GitHub
parent 5bb28c23a9
commit 82fdd6fa79
+5 -2
View File
@@ -23,9 +23,12 @@ class PingHostname
count: $count,
))->run();
Log::info('Pinged hostname', [
$data = $ping->toArray();
unset($data['raw_output'], $data['lines']);
Log::debug('Pinged hostname', [
'host' => $hostname,
'data' => $ping->toArray(),
'data' => $data,
]);
return $ping;