From ccee5f9f56585687315729f69a1b4669a9680b34 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Fri, 27 Jun 2025 16:58:15 -0400 Subject: [PATCH] FIX: more details --- cli/src/Service/Schedule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/Service/Schedule.php b/cli/src/Service/Schedule.php index c67077a..4fe7187 100644 --- a/cli/src/Service/Schedule.php +++ b/cli/src/Service/Schedule.php @@ -26,7 +26,7 @@ class Schedule try { $data = $this->parseCommandLine($line); } catch (Throwable $exception) { - $this->logger->error($exception->getMessage()); + $this->logger->error($exception->getMessage(), ['line' => $line, 'exception' => $exception]); continue; } if ($this->processSchedule($now, $data)) {