extern crate test; use test::Bencher; use ferretlog::*; #[bench] fn bench_log_print(b: &mut Bencher) { b.iter(|| { notice!("Notice our error"); }); }