Skip to content

Commit

Permalink
downgrade replayed transaction log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
aditiharini committed Jan 10, 2025
1 parent 8e6c2fa commit 99032f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/storage/store/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use thiserror::Error;
use tokio::sync::oneshot;
use tokio::sync::{broadcast, mpsc};
use tokio::time::timeout;
use tracing::{error, info, warn};
use tracing::{debug, error, info, warn};

#[derive(Error, Debug)]
pub enum EngineError {
Expand Down Expand Up @@ -669,7 +669,7 @@ impl ShardEngine {
self.stores
.trie
.get_hash(&self.db, txn_batch, &TrieKey::for_fid(snapchain_txn.fid));
info!(
debug!(
fid = snapchain_txn.fid,
num_user_messages = total_user_messages,
num_system_messages = total_system_messages,
Expand Down

0 comments on commit 99032f3

Please sign in to comment.