Reducing log levels

This commit is contained in:
godmodegalactus 2024-04-24 11:27:48 +02:00
parent 522866b508
commit 07056d8c58
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
2 changed files with 2 additions and 2 deletions

View File

@ -414,7 +414,7 @@ impl AccountStorageInterface for InmemoryAccountStore {
}
None => {
if commitment == Commitment::Confirmed {
log::warn!(
log::debug!(
"slot status not found for {} and commitment {}, confirmed lagging",
slot,
commitment.into_commitment_level()

View File

@ -53,7 +53,7 @@ fn create_grpc_multiplex_processed_block_task(
'recv_loop: loop {
// recv loop
if last_tick.elapsed() > Duration::from_millis(800) {
warn!(
trace!(
"(soft_realtime) slow multiplex loop interation: {:?}",
last_tick.elapsed()
);