Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/service/src/cryptography/signatures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,10 +483,10 @@ pub fn recover_address_from_ext_signature<S: SolStruct>(
);

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)
}
Expand Down
4 changes: 2 additions & 2 deletions core/service/src/engine/threshold/threshold_kms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl<
health_reporter
.set_not_serving::<CoreServiceEndpointServer<Self>>()
.await;
tracing::info!("Sat not serving");
tracing::trace!("Set not serving");
tracker.close();
tracker.wait().await;
mpc_abort_handle.abort();
Expand Down Expand Up @@ -211,7 +211,7 @@ impl<EP: Sync, UD: Sync, PD: Sync, KG: Sync, PP: Sync, CG: Sync, CM: Sync, BO: S
health_reporter
.set_not_serving::<CoreServiceEndpointServer<Self>>()
.await;
tracing::info!("Sat not serving");
tracing::trace!("Set not serving");
tracker.close();
tracker.wait().await;
mpc_abort_handle.abort();
Expand Down
2 changes: 1 addition & 1 deletion core/service/src/vault/storage/crypto_material/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ pub fn log_data_exists<T: Display, U: Display, V: Display>(
storage_info,
pub_info
),
None => tracing::info!(
None => tracing::warn!(
"{} with ID {} already exist, skipping generation",
data_type,
id
Expand Down
4 changes: 2 additions & 2 deletions core/service/src/vault/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ pub async fn delete_at_request_id<S: Storage>(
))
})
} else {
tracing::info!(
tracing::warn!(
"Tried to delete data with ID {} and type {}, but did not exist",
request_id,
data_type
Expand Down Expand Up @@ -403,7 +403,7 @@ pub async fn delete_at_request_and_epoch_id<S: StorageExt>(
))
})
} else {
tracing::info!(
tracing::warn!(
"Tried to delete data with ID {} and epoch {} and type {}, but did not exist",
request_id,
epoch_id,
Expand Down
8 changes: 4 additions & 4 deletions observability/src/conf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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(),
));
Expand Down Expand Up @@ -343,7 +343,7 @@ impl Settings<'_> {

let settings: T = config.try_deserialize()?;

tracing::info!("DEBUG: SETTINGS: {:?}", settings);
println!("DEBUG: SETTINGS: {:?}", settings);

Ok(settings)
}
Expand Down
Loading