File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use std::{
99} ;
1010use tester:: TestOpts ;
1111use tracing:: { debug, error, info} ;
12- use tracing_subscriber:: FmtSubscriber ;
12+ use tracing_subscriber:: { EnvFilter , FmtSubscriber } ;
1313
1414// Comment directive parsing.
1515static DEFAULT_REGEX_STR : & str = r#"^\s*//\s*default-(vertex|fragment)\s*$"# ;
@@ -1091,12 +1091,10 @@ fn find_shader_libraries(
10911091 Ok ( libraries)
10921092}
10931093
1094- // --- Main as tester test harness ---
1095-
10961094fn main ( ) {
10971095 // Initialize tracing.
10981096 let subscriber = FmtSubscriber :: builder ( )
1099- . with_max_level ( tracing :: Level :: INFO )
1097+ . with_env_filter ( EnvFilter :: from_default_env ( ) )
11001098 . finish ( ) ;
11011099 let _ = tracing:: subscriber:: set_global_default ( subscriber) ;
11021100
You can’t perform that action at this time.
0 commit comments