diff --git a/core/service/src/cryptography/signatures.rs b/core/service/src/cryptography/signatures.rs index 8d1f3c3a1f..072873020e 100644 --- a/core/service/src/cryptography/signatures.rs +++ b/core/service/src/cryptography/signatures.rs @@ -483,10 +483,10 @@ pub fn recover_address_from_ext_signature( ); let hash = data.eip712_signing_hash(domain); - tracing::info!("Public Data EIP-712 Message hash: {:?}", hash); + tracing::debug!("Public Data EIP-712 Message hash: {:?}", hash); let addr = sig.recover_address_from_prehash(&hash)?; - tracing::info!("Reconstructed address: {}", addr); + tracing::debug!("Reconstructed address: {}", addr); Ok(addr) } diff --git a/core/service/src/engine/threshold/threshold_kms.rs b/core/service/src/engine/threshold/threshold_kms.rs index 30f76706f1..16286221a2 100644 --- a/core/service/src/engine/threshold/threshold_kms.rs +++ b/core/service/src/engine/threshold/threshold_kms.rs @@ -112,7 +112,7 @@ impl< health_reporter .set_not_serving::>() .await; - tracing::info!("Sat not serving"); + tracing::trace!("Set not serving"); tracker.close(); tracker.wait().await; mpc_abort_handle.abort(); @@ -211,7 +211,7 @@ impl>() .await; - tracing::info!("Sat not serving"); + tracing::trace!("Set not serving"); tracker.close(); tracker.wait().await; mpc_abort_handle.abort(); diff --git a/core/service/src/vault/storage/crypto_material/utils.rs b/core/service/src/vault/storage/crypto_material/utils.rs index 7af2274eb8..0b35a7f3d0 100644 --- a/core/service/src/vault/storage/crypto_material/utils.rs +++ b/core/service/src/vault/storage/crypto_material/utils.rs @@ -215,7 +215,7 @@ pub fn log_data_exists( storage_info, pub_info ), - None => tracing::info!( + None => tracing::warn!( "{} with ID {} already exist, skipping generation", data_type, id diff --git a/core/service/src/vault/storage/mod.rs b/core/service/src/vault/storage/mod.rs index 16cbdca2bd..a38f947bf1 100644 --- a/core/service/src/vault/storage/mod.rs +++ b/core/service/src/vault/storage/mod.rs @@ -371,7 +371,7 @@ pub async fn delete_at_request_id( )) }) } else { - tracing::info!( + tracing::warn!( "Tried to delete data with ID {} and type {}, but did not exist", request_id, data_type @@ -403,7 +403,7 @@ pub async fn delete_at_request_and_epoch_id( )) }) } else { - tracing::info!( + tracing::warn!( "Tried to delete data with ID {} and epoch {} and type {}, but did not exist", request_id, epoch_id, diff --git a/observability/src/conf.rs b/observability/src/conf.rs index 13a55b71b1..10f3e6b61d 100644 --- a/observability/src/conf.rs +++ b/observability/src/conf.rs @@ -5,7 +5,7 @@ use std::str::FromStr; use std::sync::LazyLock; use std::time::Duration; use strum_macros::{AsRefStr, Display, EnumString}; -use tracing::{debug, warn}; +use tracing::debug; use typed_builder::TypedBuilder; use validator::Validate; @@ -101,11 +101,11 @@ impl TelemetryConfig { } pub fn validate(&self) -> Result<(), ConfigError> { - debug!("Validating telemetry config: {:?}", self); + println!("Validating telemetry config: {:?}", self); if let Some(endpoint) = &self.tracing_endpoint && endpoint.is_empty() { - warn!("Empty tracing endpoint provided"); + println!("WARN: Empty tracing endpoint provided"); return Err(ConfigError::Message( "tracing endpoint cannot be empty".to_string(), )); @@ -343,7 +343,7 @@ impl Settings<'_> { let settings: T = config.try_deserialize()?; - tracing::info!("DEBUG: SETTINGS: {:?}", settings); + println!("DEBUG: SETTINGS: {:?}", settings); Ok(settings) }