From 4f3d076dabc651308ce6e14feefc215f445bf64d Mon Sep 17 00:00:00 2001 From: Asias He Date: Mon, 22 Sep 2025 09:47:32 +0800 Subject: [PATCH] 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 --- replica/tablets.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/replica/tablets.cc b/replica/tablets.cc index 6b44e9dda4..e838804fb5 100644 --- a/replica/tablets.cc +++ b/replica/tablets.cc @@ -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) {