diff --git a/db/db_impl.cc b/db/db_impl.cc index e76d8efa331f14f59f934a09f86b17fd9c3312bc..9129f7b880f9f99fdab2dbd1cc2a1bcb4018a25f 100644 --- a/db/db_impl.cc +++ b/db/db_impl.cc @@ -931,8 +931,11 @@ void DBImpl::ScheduleGCTTL() { auto should_marked_for_compacted = [&](uint64_t ratio_expire_time, uint64_t scan_gap_expire_time, uint64_t now) { - ROCKS_LOG_INFO(immutable_db_options_.info_log, "marked for compact SST: %d,%d,%d", - ratio_expire_time,scan_gap_expire_time,now); + ROCKS_LOG_INFO(immutable_db_options_.info_log, + "SST Table property info: % PRIu64 " + ",% PRIu64 " + ",% PRIu64 ", + ratio_expire_time, scan_gap_expire_time, now); return (std::min(ratio_expire_time, scan_gap_expire_time) <= now); }; ROCKS_LOG_INFO(immutable_db_options_.info_log, "Start ScheduleGCTTL");