From 2329355566594118650c451f4405ec6a85ac4d58 Mon Sep 17 00:00:00 2001 From: Amr Barghouthi <30410268+AmrBarghouthi@users.noreply.github.com> Date: Thu, 1 May 2025 22:51:29 +0100 Subject: [PATCH] Update ScanOrder.php fix bad log line --- Model/ScanOrder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Model/ScanOrder.php b/Model/ScanOrder.php index a36ae5b..d49d699 100644 --- a/Model/ScanOrder.php +++ b/Model/ScanOrder.php @@ -89,7 +89,7 @@ public function scan($startTime = '-10 days', $endTime = 'now') $startTime = gmdate('Y-m-d H:i:s', strtotime($startTime)); $endTime = gmdate('Y-m-d H:i:s', strtotime($endTime)); } catch (\Exception $exception) { - $this->log("Time format is not support"); + $this->log(["Time format is not support"]); throw $exception; } $tamaraOrderCollection = $this->tamaraOrderCollectionFactory->create(); @@ -242,4 +242,4 @@ public function setScanFromConsole(bool $value) public function isScanFromConsole() { return $this->scanFromConsole !== false; } -} \ No newline at end of file +}