use crate::*;
pub fn err_spawn<F>(hint: &'static str, f: F)
where
F: std::future::Future<Output = LairResult<()>> + 'static + Send,
{
tokio::task::spawn(async move {
match f.await {
Ok(_) => debug!("FUTURE {} ENDED Ok!!!", hint),
Err(e) => warn!("FUTURE {} ENDED Err: {:?}", hint, e),
}
});
}