additional info level span adjustments

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2025-01-26 04:46:10 +00:00
parent af399fd517
commit 329925c661
7 changed files with 24 additions and 13 deletions

View file

@ -5,7 +5,8 @@ use std::{
};
use conduwuit::{
debug, implement, utils::continue_exponential_backoff_secs, Err, PduEvent, Result,
debug, debug::INFO_SPAN_LEVEL, implement, utils::continue_exponential_backoff_secs, Err,
PduEvent, Result,
};
use ruma::{CanonicalJsonValue, EventId, OwnedEventId, RoomId, ServerName, UInt};
@ -14,7 +15,7 @@ use ruma::{CanonicalJsonValue, EventId, OwnedEventId, RoomId, ServerName, UInt};
#[allow(clippy::too_many_arguments)]
#[tracing::instrument(
name = "prev",
level = "debug",
level = INFO_SPAN_LEVEL,
skip_all,
fields(%prev_id),
)]