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
This is a pretty ad-hoc specific config, mainly to debug setting up an auth system. For some time now, we have a fairly flexible filter system for logging, where logging levels can be set per module path. We could just do the header logging in a new dummy module and then remove the config option.
mod header_logging {fnlog(req:&Request){ ...}}
It makes the code a bit more meh, but gets rid of one config option by integrating it into a more flexible solution, which is nice. 🤷
The text was updated successfully, but these errors were encountered:
…es (#1309)
This rather ad-hoc random config option was weird. Now two noisy log
messages can be individually filtered by moving them to separate
submodules. This changes the default when just setting `filters.tobira =
"trace`" in that now, HTTP headers are also printed. But I think that's
totally fine.
Fixes#1291
This is a pretty ad-hoc specific config, mainly to debug setting up an auth system. For some time now, we have a fairly flexible filter system for logging, where logging levels can be set per module path. We could just do the header logging in a new dummy module and then remove the config option.
It makes the code a bit more meh, but gets rid of one config option by integrating it into a more flexible solution, which is nice. 🤷
The text was updated successfully, but these errors were encountered: