File tree Expand file tree Collapse file tree 13 files changed +2385
-5017
lines changed Expand file tree Collapse file tree 13 files changed +2385
-5017
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,7 @@ pub struct Options {
2020}
2121
2222pub fn run ( options : Options ) -> std:: io:: Result < ( ) > {
23- tracing_subscriber:: fmt ( )
24- . with_target ( false )
25- . without_time ( )
26- . with_level ( true )
27- . with_env_filter ( tracing_subscriber:: EnvFilter :: from_default_env ( ) )
28- . init ( ) ;
23+ codeql_extractor:: extractor:: set_tracing_level ( "ql" ) ;
2924
3025 let extractor = simple:: Extractor {
3126 prefix : "ql" . to_string ( ) ,
Original file line number Diff line number Diff line change @@ -15,12 +15,7 @@ pub struct Options {
1515}
1616
1717pub fn run ( options : Options ) -> std:: io:: Result < ( ) > {
18- tracing_subscriber:: fmt ( )
19- . with_target ( false )
20- . without_time ( )
21- . with_level ( true )
22- . with_env_filter ( tracing_subscriber:: EnvFilter :: from_default_env ( ) )
23- . init ( ) ;
18+ codeql_extractor:: extractor:: set_tracing_level ( "ql" ) ;
2419
2520 let languages = vec ! [
2621 Language {
Original file line number Diff line number Diff line change 22# extractor. It is set to the lowest version of Rust we want to support.
33
44[toolchain ]
5- channel = " 1.70 "
5+ channel = " 1.74 "
66profile = " minimal"
77components = [ " rustfmt" ]
You can’t perform that action at this time.
0 commit comments