tablets: Demote set sstables_repaired_at log to debug level

This is log is too excessive when tablet count is high. Demote to debug
level.

Fixes #25926

Closes scylladb/scylladb#26175
This commit is contained in:
Asias He
2025-09-22 09:47:32 +08:00
committed by Pavel Emelyanov
parent d462dc8839
commit 4f3d076dab

View File

@@ -613,7 +613,7 @@ tablet_id process_one_row(replica::database* db, table_id table, tablet_map& map
std::move(new_tablet_replicas), pending_replica, session_id});
}
tablet_logger.info("Set sstables_repaired_at={} table={} tablet={}", sstables_repaired_at, table, tid);
tablet_logger.debug("Set sstables_repaired_at={} table={} tablet={}", sstables_repaired_at, table, tid);
map.set_tablet(tid, tablet_info{std::move(tablet_replicas), repair_time, repair_task_info, migration_task_info, sstables_repaired_at});
if (update_repair_time && db) {