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
When using max_level_debug feature, and compiling a non-release build, my expectation would be that trace! code is not present in the binary. As mentioned in the documentation:
Log levels can be statically disabled at compile time via Cargo features. Log invocations at disabled levels will be skipped and will not even be present in the resulting binary
However, the binary still contains some code which is not optimized away by the Rust compiler:
When using
max_level_debug
feature, and compiling a non-release build, my expectation would be thattrace!
code is not present in the binary. As mentioned in the documentation:However, the binary still contains some code which is not optimized away by the Rust compiler:
The text was updated successfully, but these errors were encountered: