Browse Source

Merge pull request #284 from ideawu/master

log compaction output file's level along with number
main
Chris Mumford 8 years ago
parent
commit
dac40d25f6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      db/db_impl.cc

+ 2
- 1
db/db_impl.cc View File

@ -851,8 +851,9 @@ Status DBImpl::FinishCompactionOutputFile(CompactionState* compact,
delete iter;
if (s.ok()) {
Log(options_.info_log,
"Generated table #%llu: %lld keys, %lld bytes",
"Generated table #%llu@%d: %lld keys, %lld bytes",
(unsigned long long) output_number,
compact->compaction->level(),
(unsigned long long) current_entries,
(unsigned long long) current_bytes);
}

Loading…
Cancel
Save