Skip to content

Commit

Permalink
use info logging level for progress
Browse files Browse the repository at this point in the history
  • Loading branch information
imabdulbasit committed Mar 4, 2025
1 parent 0ea3d2b commit 8a905ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sequencer/src/persistence/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ impl SequencerPersistence for Persistence {

tx.commit().await?;

tracing::warn!("DA proposals migration progress: {} rows", offset);
tracing::info!("DA proposals migration progress: {} rows", offset);
offset += batch_size;

if rows.len() < batch_size as usize {
Expand Down Expand Up @@ -1545,7 +1545,7 @@ impl SequencerPersistence for Persistence {
let mut tx = self.db.write().await?;
query.execute(tx.as_mut()).await?;
tx.commit().await?;
tracing::warn!("VID shares migration progress: {} rows", offset);
tracing::info!("VID shares migration progress: {} rows", offset);
offset += batch_size;

if rows.len() < batch_size as usize {
Expand Down Expand Up @@ -1691,7 +1691,7 @@ impl SequencerPersistence for Persistence {
tx.commit().await?;

offset += batch_size;
tracing::warn!("quorum proposals migration progress: {} rows", offset);
tracing::info!("quorum proposals migration progress: {} rows", offset);

if rows.len() < batch_size as usize {
break;
Expand Down Expand Up @@ -1774,7 +1774,7 @@ impl SequencerPersistence for Persistence {
tx.commit().await?;
offset += batch_size;

tracing::warn!("Quorum certificates migration progress: {} rows", offset);
tracing::info!("Quorum certificates migration progress: {} rows", offset);

if rows.len() < batch_size as usize {
break;
Expand Down

0 comments on commit 8a905ee

Please sign in to comment.