diff --git a/classes/ETL/EtlOverseer.php b/classes/ETL/EtlOverseer.php index 5505b22b56..deba0856e8 100644 --- a/classes/ETL/EtlOverseer.php +++ b/classes/ETL/EtlOverseer.php @@ -460,7 +460,7 @@ private function _execute($actionName, iAction $actionObj) $this->logger->info(array( 'message' => 'start', 'action_name' => $actionName, - 'action' => $actionObj, + 'action' => (string) $actionObj, 'start_date' => $this->etlOverseerOptions->getStartDate(), 'end_date' => $this->etlOverseerOptions->getEndDate(), )); @@ -486,7 +486,7 @@ private function _execute($actionName, iAction $actionObj) $this->logger->info(array( 'message' => 'end', 'action_name' => $actionName, - 'action' => $actionObj + 'action' => (string) $actionObj, )); } // _execute() } // class EtlOverseer