Explorar el Código

log compaction output file's level along with number

main
ideawu hace 9 años
padre
commit
8fcceb2a6f
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

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

Cargando…
Cancelar
Guardar