diff --git a/HISTORY.md b/HISTORY.md index ca96bf3007..d90a90a01b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,7 @@ Based on RocksDB 8.1.1 * CI: add a workflow for building and publishing jar to maven central (#507) * LOG: Compaction job traces - report cf name and job id (#511) * db_stress: Add cost_write_buffer_to_cache flag (#513) +* Log Improvement: Report the name of cf-s whose options are skipped in the log (#520) ### Bug Fix * CI: fix sanity check to use clang-format 10 diff --git a/db/column_family.cc b/db/column_family.cc index 286d66aec6..94fc875402 100644 --- a/db/column_family.cc +++ b/db/column_family.cc @@ -619,7 +619,8 @@ ColumnFamilyData::ColumnFamilyData( name.c_str()); initial_cf_options_.Dump(ioptions_.logger); } else { - ROCKS_LOG_INFO(ioptions_.logger, "\t(skipping printing options)\n"); + ROCKS_LOG_INFO(ioptions_.logger, + "\t(skipping printing options of [%s])\n", name.c_str()); } }