Skip to content

Commit

Permalink
debug -> trace (MystenLabs#3944)
Browse files Browse the repository at this point in the history
  • Loading branch information
longbowlu authored Aug 12, 2022
1 parent 95796a5 commit 1c8d772
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/sui-core/src/gateway_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use prometheus::{
Registry,
};
use sui_types::SUI_SYSTEM_STATE_OBJECT_ID;
use tracing::{debug, error, Instrument};
use tracing::{debug, error, trace, Instrument};

use sui_adapter::adapter::resolve_and_type_check;
use sui_config::gateway::GatewayConfig;
Expand Down Expand Up @@ -1378,7 +1378,8 @@ where
.sync_all_owned_objects(account_addr, Duration::from_secs(60))
.await?;

debug!(
// This is quite spammy when there are a number of huge objects
trace!(
?active_object_certs,
deletec = ?_deleted_refs_certs,
?account_addr,
Expand Down

0 comments on commit 1c8d772

Please sign in to comment.