From 2a7f4552b050d937b23fe3fc6692a288fd0d32ef Mon Sep 17 00:00:00 2001 From: Supun Wimalasena Date: Sat, 14 Feb 2026 11:47:13 +0100 Subject: [PATCH] ping debug --- bundle/src/Comms/Ping/PingCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundle/src/Comms/Ping/PingCommand.php b/bundle/src/Comms/Ping/PingCommand.php index 9f92a25..25c41cc 100644 --- a/bundle/src/Comms/Ping/PingCommand.php +++ b/bundle/src/Comms/Ping/PingCommand.php @@ -64,7 +64,9 @@ public function __invoke( try { $this->comms->send(new PingEvent(), $c); $success = true; - } catch (CommsApiFailedException $e) {} + } catch (CommsApiFailedException $e) { + $output->writeln('Error pinging ' . $c->value . ': ' . $e->getMessage() . ''); + } $end = microtime(true); $latency = round(($end - $start) * 1000);