Closed
Description
The details can be found logging while running cargo test.
The problem is in usage of rust log library,
to get it work you need call "initialization" code that provide implementation of log::Log
trait
to logging macros.
So to get output from your code that tested by "cargo test" you need somehow call "logging_init" function, but as can I see at now there is no way to tell "cargo" run something before any tests.
Previously reported as cargo bug