pub trait OtaLogListener {
// Required method
fn listen<'life0, 'async_trait>(
&'life0 self,
handler: LogHandlerFnPtr,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}