1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-10-16 14:37:27 +00:00

Forbid printing log::trace! in release builds

This commit is contained in:
Steffo 2024-07-11 08:26:50 +02:00
parent 05592396e7
commit b8f048b1a3
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -7,7 +7,7 @@ edition = "2021"
anyhow = "1.0.86"
chrono = "0.4.38"
diesel = { version = "2.2.1", features = ["postgres"] }
log = "0.4.22"
log = { version = "0.4.22", features = ["release_max_level_debug"] }
micronfig = "0.3.0"
pretty_env_logger = "0.5.0"
rand = { version = "0.8.5", features = ["small_rng"] }