We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TL;DR We should be fine with test_log only.
test_log
We're currently using: test_log and/or
let _ = env_logger::builder().is_test(true).try_init();
( ⬆️ which is redundant with test_log) or
let _ = tracing_subscriber::fmt() .with_env_filter(EnvFilter::from_default_env()) .try_init();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TL;DR
We should be fine with
test_log
only.We're currently using:
test_log
and/or
( ⬆️ which is redundant with
test_log
)or
The text was updated successfully, but these errors were encountered: