diff --git a/eZ/Publish/Core/Persistence/Cache/ContentHandler.php b/eZ/Publish/Core/Persistence/Cache/ContentHandler.php index f9afc1a688e..61e9fbbea93 100644 --- a/eZ/Publish/Core/Persistence/Cache/ContentHandler.php +++ b/eZ/Publish/Core/Persistence/Cache/ContentHandler.php @@ -102,7 +102,7 @@ public function loadContentInfoList(array $contentIds) $contentIds, 'ez-content-info-', function (array $cacheMissIds) { - $this->logger->logCall(__METHOD__, ['content' => $cacheMissIds]); + $this->logger->logCall(__CLASS__ . '::loadContentInfoList', ['content' => $cacheMissIds]); return $this->persistenceHandler->contentHandler()->loadContentInfoList($cacheMissIds); }, diff --git a/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php b/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php index bb1c8d874a6..95532065468 100644 --- a/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php +++ b/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php @@ -90,7 +90,7 @@ public function loadGroups(array $groupIds) $groupIds, 'ez-content-type-group-', function (array $cacheMissIds) { - $this->logger->logCall(__METHOD__, ['groups' => $cacheMissIds]); + $this->logger->logCall(__CLASS__ . '::loadGroups', ['groups' => $cacheMissIds]); return $this->persistenceHandler->contentTypeHandler()->loadGroups($cacheMissIds); },