You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for taking so long to circle around to this! There are two things going on in that sample:
The log events are captured by cargo test, which only shows them for tests that fail, unless you pass the --nocapture flag.
The default environment variable will only show error and above events, so when running cargo test you either need an environment variable like RUST_LOG=info, or add a .filter_level(log::LevelFilter::Info) to your builder.
like #107
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=0aa41ea6690fb25c0b60004fa80e8045
I used the example in readme, but still no output.
The text was updated successfully, but these errors were encountered: