Explorar el Código

Merge pull request #284 from ideawu/master

log compaction output file's level along with number
main
Chris Mumford hace 8 años
padre
commit
dac40d25f6
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      db/db_impl.cc

+ 2
- 1
db/db_impl.cc Ver fichero

@ -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);
}

Cargando…
Cancelar
Guardar