daily logging improvements

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-04-24 02:34:21 -07:00 committed by June
parent 0b33eec1c2
commit a124122dd4
3 changed files with 11 additions and 17 deletions

View file

@ -25,7 +25,7 @@ use tracing::{debug, error, info, trace, warn};
use super::state_compressor::CompressedStateEvent;
use crate::{
debug_info,
debug_error, debug_info,
service::{pdu, Arc, BTreeMap, HashMap, Result},
services, Error, PduEvent,
};
@ -1103,7 +1103,7 @@ impl Service {
events_all.insert(next_id);
},
Err(e) => {
warn!("Failed to fetch event {next_id}: {e}");
debug_error!("Failed to fetch event {next_id}: {e}");
back_off((*next_id).to_owned()).await;
},
}