Quellcode durchsuchen

log compaction output file's level along with number

main
ideawu vor 9 Jahren
Ursprung
Commit
8fcceb2a6f
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      db/db_impl.cc

+ 2
- 1
db/db_impl.cc Datei anzeigen

@ -821,8 +821,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);
}

Laden…
Abbrechen
Speichern