daboross / fern

Simple, efficient logging for Rust
MIT License
834 stars 50 forks source link

Specific log level for some module #136

Open xairaven opened 1 month ago

xairaven commented 1 month ago

Hello! Can you please tell me if it is possible to "mute" messages from some modules? For example, the module teloxide::error_handlers sometimes logs some message with ERROR level. And I would like to redirect all module logs to DEBUG. Is it possible?

I found the level_for method, but it doesn't work, not sure if this is what I need:

.level_for("teloxide::error_handlers", LevelFilter::Debug)

I keep getting ERROR level logs from this module.

xairaven commented 4 weeks ago

@daboross Sorry for tagging, I can't figure out how to solve the problem. I would be very grateful for advice