rust-lightning/fuzz/fuzz_targets/utils/test_logger.rs
2018-12-03 13:58:50 -05:00

12 lines
338 B
Rust

use lightning::util::logger::{Logger, Record};
pub struct TestLogger {}
impl Logger for TestLogger {
fn log(&self, record: &Record) {
#[cfg(test)]
println!("{:<5} [{} : {}, {}] {}", record.level.to_string(), record.module_path, record.file, record.line, record.args);
#[cfg(not(test))]
let _ = format!("{}", record.args);
}
}