Skip to content

Commit 022a937

Browse files
committed
BUGFIX: Add missing s in error message placeholder
1 parent ac7318e commit 022a937

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Classes/Driver/Version1/IndexerDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function fulltext(NodeInterface $node, array $fulltextIndexOfNode, $targe
8181
$closestFulltextNode = $closestFulltextNode->getParent();
8282
if ($closestFulltextNode === null) {
8383
// root of hierarchy, no fulltext root found anymore, abort silently...
84-
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
84+
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%s)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
8585

8686
return null;
8787
}

Classes/Driver/Version2/IndexerDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function fulltext(NodeInterface $node, array $fulltextIndexOfNode, $targe
8484
$closestFulltextNode = $closestFulltextNode->getParent();
8585
if ($closestFulltextNode === null) {
8686
// root of hierarchy, no fulltext root found anymore, abort silently...
87-
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
87+
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%s)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
8888

8989
return null;
9090
}

0 commit comments

Comments
 (0)