Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamically change log level after init #228

Open
hasezoey opened this issue Mar 2, 2022 · 5 comments
Open

Dynamically change log level after init #228

hasezoey opened this issue Mar 2, 2022 · 5 comments

Comments

@hasezoey
Copy link

hasezoey commented Mar 2, 2022

Is there currently a way to change the log level after having called init already? If there is currently no way, i would like to request this feature

Use case:
i would like to enable logging as the first thing in my code to have log output (from env, etc) and later after having parsed the cli (like with clap) set the level based on something like verbosity.
also another use case would be to dynamically turn the logging on / off for a specific part (which is probably already covered by #144)

@wiz21b
Copy link

wiz21b commented Mar 19, 2022

I'd like to mention that I have a similar use case. I have tried to disable logging before initializing the builder but it doesn't work. I've also tried to send all the log to a sink target, but it doesn't work either. It seems that the RUST_LOG env. variable takes priority over the settings of the builder...

This is what I do:

log_builder.filter(None, LevelFilter::Error);
log_builder.target(env_logger::Target::Pipe(sink));
log_builder.init();

@morrisonlevi
Copy link

You don't need env_logger to change the log level as the log crate already provides log::set_max_level.

@hasezoey
Copy link
Author

You don't need env_logger to change the log level as the log crate already provides log::set_max_level.

the documentation says Generally, this should only be called by the active logging implementation., is env_logger fine with it being change outside of itself?

@KodrAus
Copy link
Collaborator

KodrAus commented May 25, 2022

I think you might get strange results calling set_max_level directly, since env_logger "compiles" the max level into its filters, those aren't derived on-the-fly from the max level set in log.

@epage
Copy link
Contributor

epage commented Nov 10, 2022

btw #113 looks somewhat related

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants