From 3c8822e5312070b85383b632f401c66a95a4f9b2 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Tue, 3 Jun 2025 12:46:47 -0400 Subject: [PATCH] FIX: Log job requests --- cli/src/Command/Queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/Command/Queue.php b/cli/src/Command/Queue.php index 6193dff..6a59b81 100644 --- a/cli/src/Command/Queue.php +++ b/cli/src/Command/Queue.php @@ -62,7 +62,7 @@ class Queue extends Command try { $response = $this->client->get($uri); } catch (ClientExceptionInterface $exception) { - $this->logger->error($exception->getMessage()); + $this->logger->error($exception); return Console\Command\Command::FAILURE; } $output->writeln("Response Code: {$response->getStatusCode()}");