mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 15:20:24 +01:00
10 lines
314 B
Rust
10 lines
314 B
Rust
use lightning::util::logger::{Logger, Record};
|
|
|
|
pub struct TestLogger {}
|
|
|
|
impl Logger for TestLogger {
|
|
fn log(&self, record: &Record) {
|
|
#[cfg(any(test, not(feature = "fuzztarget")))]
|
|
println!("{:<5} [{} : {}, {}] {}", record.level.to_string(), record.module_path, record.file, record.line, record.args);
|
|
}
|
|
}
|