From 53005c91a51818b78f91e81dd5407785b65b33b9 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 25 May 2025 18:54:53 +0200 Subject: [PATCH] reduce log level of table sync messages --- src/table/sync.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/table/sync.rs b/src/table/sync.rs index 6c8ddb1d..e72286ed 100644 --- a/src/table/sync.rs +++ b/src/table/sync.rs @@ -503,7 +503,7 @@ impl SyncWorker { fn add_full_sync(&mut self) { let mut partitions = self.syncer.data.replication.sync_partitions(); - info!( + debug!( "{}: Adding full sync for ack layout version {}", F::TABLE_NAME, partitions.layout_version @@ -553,7 +553,7 @@ impl Worker for SyncWorker { } if todo.partitions.is_empty() { - info!( + debug!( "{}: Completed full sync for ack layout version {}", F::TABLE_NAME, todo.layout_version