Skip to content

Commit

Permalink
Merge branch '7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwojs committed May 23, 2018
2 parents 640c23c + 8c12a2d commit 7f76756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eZ/Publish/Core/Persistence/Cache/ContentHandler.php
Expand Up @@ -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);
},
Expand Down
2 changes: 1 addition & 1 deletion eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php
Expand Up @@ -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);
},
Expand Down

0 comments on commit 7f76756

Please sign in to comment.