caplog

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.

Usage

```rust use log::warn;

[test]

fn testscramblemessage() { let handle = caplog::gethandle(); warn!("scrambled eggs"); assert!(handle.anymsg_contains("scrambled eggs")); } ```