We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 976faf9 commit 991d659Copy full SHA for 991d659
ruby/extractor/src/main.rs
@@ -81,7 +81,7 @@ fn main() -> std::io::Result<()> {
81
.with_level(true)
82
.with_env_filter(
83
tracing_subscriber::EnvFilter::try_from_default_env()
84
- .unwrap_or(tracing_subscriber::EnvFilter::new("ruby_extractor=warn")),
+ .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("ruby_extractor=warn")),
85
)
86
.init();
87
tracing::warn!("Support for Ruby is currently in Beta: https://git.io/codeql-language-support");
0 commit comments