Skip to content

Commit d8aa772

Browse files
authored
BUGFIX: Correct sprintf pattern that lacked an "s"
1 parent c9756c8 commit d8aa772

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Classes/Driver/Version5/IndexerDriver.php

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

8888
return null;
8989
}

0 commit comments

Comments
 (0)