diff --git a/deltacat/compute/compactor/model/delta_annotated.py b/deltacat/compute/compactor/model/delta_annotated.py index 051228ae..155713b8 100644 --- a/deltacat/compute/compactor/model/delta_annotated.py +++ b/deltacat/compute/compactor/model/delta_annotated.py @@ -114,7 +114,7 @@ def rebatch( # (i.e. the previous compaction round ran a rebase) if new_da and src_da.locator != new_da.locator: groups.append(new_da) - logger.info( + logger.debug( f"Due to different delta locator, Appending group of {da_group_entry_count} elements " f"and {new_da_bytes} bytes" ) @@ -133,12 +133,12 @@ def rebatch( or da_group_entry_count >= min_file_counts ): if new_da_bytes >= min_delta_bytes: - logger.info( + logger.debug( f"Appending group of {da_group_entry_count} elements " f"and {new_da_bytes} bytes to meet file size limit" ) if da_group_entry_count >= min_file_counts: - logger.info( + logger.debug( f"Appending group of {da_group_entry_count} elements " f"and {da_group_entry_count} files to meet file count limit" )