From 621d39d82c698a9ea814b68021e2f3eeac5e22bf Mon Sep 17 00:00:00 2001 From: Hannah Bast Date: Thu, 28 Nov 2024 15:16:12 +0100 Subject: [PATCH] Fix inconsistency in log message during index build This fixes an inconsistency introduced by #1620. The consistency is important for `qlever index-stats`, which expect a certain wording for its log analysis. --- src/index/IndexImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index/IndexImpl.cpp b/src/index/IndexImpl.cpp index 938d8880b2..d51744934f 100644 --- a/src/index/IndexImpl.cpp +++ b/src/index/IndexImpl.cpp @@ -322,7 +322,7 @@ void IndexImpl::updateInputFileSpecificationsAndLog( // For a single input stream, show the name and whether we parse in parallel. // For multiple input streams, only show the number of streams. if (spec.size() == 1) { - AD_LOG_INFO << "Parsing triples from single input stream " + AD_LOG_INFO << "Processing triples from single input stream " << spec.at(0).filename_ << " (parallel = " << (spec.at(0).parseInParallel_ ? "true" : "false") << ") ..." << std::endl;