fix: reduce "nothing to do" lifecycle messages from from debug to trace (#3449)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/24376/head
parent
dd23056efd
commit
957276faa1
|
@ -218,7 +218,7 @@ where
|
|||
// TODO: Encapsulate locking into a CatalogTransaction type
|
||||
let partition = partition.read();
|
||||
if partition.is_persisted() {
|
||||
debug!(db_name = %self.db.name(), %partition, "nothing to be compacted for partition");
|
||||
trace!(db_name = %self.db.name(), %partition, "nothing to be compacted for partition");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -340,7 +340,7 @@ where
|
|||
let partition = partition.read();
|
||||
|
||||
if partition.is_persisted() {
|
||||
debug!(%db_name, %partition, "nothing to persist for partition");
|
||||
trace!(%db_name, %partition, "nothing to persist for partition");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue