We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec7b11 commit 0d0adbaCopy full SHA for 0d0adba
minion-tests/src/main.rs
@@ -64,7 +64,8 @@ static WORKER_ENV_NAME: &str = "__MINION_ROLE_IS_WORKER__";
64
static TEST_ENV_NAME: &str = "__MINION_ROLE_IS_TEST__";
65
fn main() {
66
tracing_subscriber::fmt()
67
- .with_writer(std::io::stdout)
+ .pretty()
68
+ .with_writer(std::io::stderr)
69
.init();
70
let test_cases = &*tests::TESTS;
71
let role = get_role();
minion-tests/src/worker.rs
@@ -58,10 +58,6 @@ async fn inner_main(test_cases: &[&'static dyn TestCase]) {
58
}
59
60
pub fn main(test_cases: &[&'static dyn TestCase]) {
61
- tracing_subscriber::fmt()
62
- .pretty()
63
- .with_writer(std::io::stderr)
- .init();
let rt = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
0 commit comments