Skip to content

Commit

Permalink
Add log for post import completion.
Browse files Browse the repository at this point in the history
  • Loading branch information
janette committed Feb 19, 2024
1 parent a774b10 commit 6b7600a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ public function postImportProcessItem(DataResource $resource): PostImportResult
else {
array_map(fn ($processor) => $processor->process($resource), $processors);
$postImportResult = $this->createPostImportResult('done', NULL, $resource);
$id = (string) $resource->getIdentifier();
$this->logger->notice('Post import job for resource @id completed.', ['@id' => $id]);
}
}
catch (\Exception $e) {
Expand Down

0 comments on commit 6b7600a

Please sign in to comment.