How can I turn on printing of trace!
s? Setting debug=true
in Config.toml did not help.
I think you need debug-assertions = true
.
also you need to use RUSTC_LOG
instead of RUST_LOG
debug = true
should imply debug-assertions = true
so I'm guessing the env var name is the problem
Thanks. Setting RUSTC_LOG
worked