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
If we were to support something fancier than prefix checks, we'd need to also consider internal consistency. We currently support regex filters on messages so we'd need to consider what target filter syntax we would support.
I have a similar situation where I'm using Rocket and some custom request guards.
The guards are generated via macros and thus end up using my module path as the output path (with a ::_ appended). They are way too verbose, logging warnings for things that do not matter.
I would like to do something like my::crate::guards::*::_=off or even my::**::_=off
https://nodejs.org/docs/latest/api/util.html#utildebuglogsection-callback
env
NODE_DEBUG=foo*
is able to match sectionfoo-bar
Would be nice to have star matching, instead of literal matching.
For example, if one named
john
, he may set all his packages log level to debug usingRUST_LOG=john_*=debug
The text was updated successfully, but these errors were encountered: