A Rust library providing log capture facilities for testing.
This crate is primarily intended for use with the
log
crate, however additional logging
facilities are welcome.
```rust use log::warn;
fn testscramblemessage() { let handle = caplog::gethandle(); warn!("scrambled eggs"); assert!(handle.anymsg_contains("scrambled eggs")); } ```