You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The current Elasticsearch bulk request, in the format required by http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
135
141
*
@@ -163,6 +169,7 @@ public function setDimensions(array $dimensionsValues): void
163
169
* Returns the index name to be used for indexing, with optional indexNamePostfix appended.
164
170
*
165
171
* @return string
172
+
* @throws Exception\ConfigurationException
166
173
* @throws Exception
167
174
*/
168
175
publicfunctiongetIndexName(): string
@@ -192,11 +199,18 @@ public function setIndexNamePostfix(string $indexNamePostfix): void
if ($this->nodeTypeIndexingConfiguration->isIndexable($node->getNodeType()) === false) {
215
-
$this->logger->debug(sprintf('NodeIndexer - Node "%s" (%s) skipped, Node Type is not allowed in the index.', $node->getContextPath(), $node->getNodeType()));
229
+
$this->logger->debug(sprintf('NodeIndexer - Node "%s" (%s) skipped, Node Type is not allowed in the index.', $node->getContextPath(), $node->getNodeType()), LogEnvironment::fromMethodName(__METHOD__));
0 commit comments