pub trait Logging: Send + Sync {
// Required method
fn log(&self, level: LogLevel, message: String);
}Available on crate feature
lightning only.Expand description
An exported trait for handling logging messages.
Implement this trait to receive and handle logging messages from the lightning session.