diff --git a/Classes/IndexQueue/FrontendHelper/PageIndexer.php b/Classes/IndexQueue/FrontendHelper/PageIndexer.php index 0897abef33..686bbbafbf 100644 --- a/Classes/IndexQueue/FrontendHelper/PageIndexer.php +++ b/Classes/IndexQueue/FrontendHelper/PageIndexer.php @@ -349,6 +349,7 @@ protected function addDocumentsToSolrIndex(array $documents): bool foreach ($documentChunks as $documentChunk) { $response = $this->solrConnection->getWriteService()->addDocuments($documentChunk); if ($response->getHttpStatus() != 200) { + $this->logger->error('Solr could not index page.', [$response->getRawResponse()]); throw new \RuntimeException('Solr Request failed.', 1331834983); } }