I feel like I must be missing how RUST_LOG
works OR that the documentation is wrong
#207
Labels
RUST_LOG
works OR that the documentation is wrong
#207
One of the documentation examples for
RUST_LOG
says thatHowever, in my own app, I've tried setting it to
RUST_LOG="debug,serenity=off"
and my log keeps spewing things from serenity anyway:Basically, the global
debug
seems to override everything, despite what the documentation says to the contrary.If I do
RUST_LOG="error,serenity=off"
, nothing prints though, so it's not likeRUST_LOG
isn't working at all. What's going on?(What I originally wanted was to do
RUST_LOG="debug,serenity::gateway::shard=warn,serenity::client::bridge::gateway::shard_runner=warn"
, but when that didn't work, I tried simplifying my value until I could find something that worked, and discovered that not even doingserenity=off
worked.)The text was updated successfully, but these errors were encountered: