Skip to content

Commit

Permalink
Fix set_items logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Mortal committed May 12, 2016
1 parent 50b3bc2 commit fa2c242
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tpie/pipelining/merge_sorter.h
Expand Up @@ -755,11 +755,11 @@ class merge_sorter {
throw exception("Wrong state in set_items: state is not stParameters");

if(n < p.runLength) {
p.runLength = p.internalReportThreshold;
log_debug() << "Decreasing run length from " << p.runLength
<< " to " << p.internalReportThreshold << std::endl;

log_debug() << "New merge sort parameters\n";
<< " to " << p.internalReportThreshold
<< " since at most " << n << " items will be pushed."
<< " New merge sort parameters:\n";
p.runLength = p.internalReportThreshold;
p.dump(log_debug());
log_debug() << std::endl;
}
Expand Down

0 comments on commit fa2c242

Please sign in to comment.