making rust server use tracing for logging

I wanted to make sure we are logging specific information in a
specific format as to protect the privacy of users, so we are starting
to use that soon, I'll tweak these settings to make sure the info is
only so specific.
This commit is contained in:
Chris Cochrun 2024-11-07 15:31:34 -06:00
parent 3e2353bc02
commit 3eb7011be8
3 changed files with 199 additions and 12 deletions

View file

@ -28,3 +28,5 @@ tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "std", "chrono", "time", "local-time", "env-filter"] }
tracing-appender = "0.2.3"
actix-files = "0.6.6"
tracing-actix-web = "0.7.14"
color-eyre = "0.6.3"