Skip to content

Commit 276f7f6

Browse files
authored
BUGFIX: Correct sprintf pattern that lacked an "s"
1 parent a739b7a commit 276f7f6

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
@@ -82,7 +82,7 @@ public function fulltext(NodeInterface $node, array $fulltextIndexOfNode, $targe
8282
$closestFulltextNode = $closestFulltextNode->getParent();
8383
if ($closestFulltextNode === null) {
8484
// root of hierarchy, no fulltext root found anymore, abort silently...
85-
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
85+
$this->logger->log(sprintf('NodeIndexer: No fulltext root found for node %s (%s)', $node->getPath(), $node->getIdentifier()), LOG_WARNING, null, 'ElasticSearch (CR)');
8686

8787
return null;
8888
}

0 commit comments

Comments
 (0)