mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-22 12:48:58 +00:00
(converter) Adding some logging around the simple processing track to investigate an issue with the converter stalling
This commit is contained in:
parent
2b9d2985ba
commit
db99242db2
@ -194,6 +194,9 @@ public class DomainProcessor {
|
||||
@Override
|
||||
public Iterator<ProcessedDocument> getDocumentsStream() {
|
||||
return iteratorFactory.create((taskConsumer) -> {
|
||||
|
||||
logger.info("Simple Processing: {}", domain);
|
||||
|
||||
while (dataStream.hasNext())
|
||||
{
|
||||
if (!(dataStream.next() instanceof CrawledDocument doc))
|
||||
@ -218,6 +221,8 @@ public class DomainProcessor {
|
||||
return processedDoc;
|
||||
});
|
||||
}
|
||||
|
||||
logger.info("Finished Simple Processing: {}", domain);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user