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 +}