remove pingcheck debug statements (#15173)

This commit is contained in:
Tony Murray 2023-07-31 12:26:25 -05:00 committed by GitHub
parent 1935d7400b
commit 1723f96b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -122,7 +122,6 @@ class PingCheck implements ShouldQueue
continue;
}
dump($line);
if (preg_match_all(
'/^(?<hostname>[^\s]+) is (?<status>alive|unreachable)(?: \((?<rtt>[\d.]+) ms\))?/m',
$line,
@ -226,7 +225,6 @@ class PingCheck implements ShouldQueue
*/
private function recordData(string $hostname, string $status, float $rtt = 0): void
{
dump(get_defined_vars());
if (Debug::isVerbose()) {
echo "Attempting to record data for $hostname... ";
}