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
It is possible to not even include the ressource intensive log preparations into the binary, by configuring builds to not include low level logs in the binary. More about: https://docs.rs/log/latest/log/index.html
For example, a crate can disable trace level logs in debug builds and trace, debug, and info level logs in release builds with the following configuration:
[dependencies]
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
The text was updated successfully, but these errors were encountered:
It is possible to not even include the ressource intensive log preparations into the binary, by configuring builds to not include low level logs in the binary. More about: https://docs.rs/log/latest/log/index.html
For example, a crate can disable trace level logs in debug builds and trace, debug, and info level logs in release builds with the following configuration:
The text was updated successfully, but these errors were encountered: