File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,8 @@ static WORKER_ENV_NAME: &str = "__MINION_ROLE_IS_WORKER__";
64
64
static TEST_ENV_NAME : & str = "__MINION_ROLE_IS_TEST__" ;
65
65
fn main ( ) {
66
66
tracing_subscriber:: fmt ( )
67
- . with_writer ( std:: io:: stdout)
67
+ . pretty ( )
68
+ . with_writer ( std:: io:: stderr)
68
69
. init ( ) ;
69
70
let test_cases = & * tests:: TESTS ;
70
71
let role = get_role ( ) ;
Original file line number Diff line number Diff line change @@ -58,10 +58,6 @@ async fn inner_main(test_cases: &[&'static dyn TestCase]) {
58
58
}
59
59
60
60
pub fn main ( test_cases : & [ & ' static dyn TestCase ] ) {
61
- tracing_subscriber:: fmt ( )
62
- . pretty ( )
63
- . with_writer ( std:: io:: stderr)
64
- . init ( ) ;
65
61
let rt = tokio:: runtime:: Builder :: new_current_thread ( )
66
62
. enable_all ( )
67
63
. build ( )
You can’t perform that action at this time.
0 commit comments