I've learned:
cargo test -- --nocapturewhich tells Cargo to show output instead of hiding output; I'm interested in seeing output for successful tests, not just failed tests.env_loggercrate 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.