Skip to content

Commit

Permalink
Fix inconsistency in log message during index build
Browse files Browse the repository at this point in the history
This fixes an inconsistency introduced by #1620. The consistency
is important for `qlever index-stats`, which expect a certain
wording for its log analysis.
  • Loading branch information
Hannah Bast committed Nov 28, 2024
1 parent add092a commit 621d39d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index/IndexImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 621d39d

Please sign in to comment.