I've learned:
cargo test -- --nocapture
which tells Cargo to show output instead of hiding output; I'm interested in seeing output for successful tests, not just failed tests.env_logger
crate which enables using an environment variable to set the log level.
I'm seeking any similar ways, and ideally any official reference guide that shows good ways to accomplish this.