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.
2 parents db1be38 + 74ba532 commit 62d25b6Copy full SHA for 62d25b6
ruby/extractor/src/main.rs
@@ -79,9 +79,12 @@ fn main() -> std::io::Result<()> {
79
.with_target(false)
80
.without_time()
81
.with_level(true)
82
- .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
+ .with_env_filter(
83
+ tracing_subscriber::EnvFilter::try_from_default_env()
84
+ .unwrap_or(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");
88
let num_threads = num_codeql_threads();
89
tracing::info!(
90
"Using {} {}",
0 commit comments