-
I've forked a dependency of my project here and added a I've overridden the official package with: [patch.crates-io]
actix-http = { git = "https://github.com/Teajey/actix-web.git", branch = "debug-headers" } But I'm not seeing this warning in the tracing output of my end application. Is there something obvious that I could be missing that would prevent the log from reaching stdout? I am using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
How are you configuring the |
Beta Was this translation helpful? Give feedback.
-
Turns out I should have been putting the |
Beta Was this translation helpful? Give feedback.
Turns out I should have been putting the
warn!
line insideactix-web-actors
, notactix-http
. Always make sure you're tracing the right code ;)