pathfinder icon indicating copy to clipboard operation
pathfinder copied to clipboard

Cleanup test logging

Open CHr15F0x opened this issue 5 months ago • 0 comments

TL;DR We should be fine with test_log only.


We're currently using: test_log and/or

let _ = env_logger::builder().is_test(true).try_init();

( :arrow_up: which is redundant with test_log) or

    let _ = tracing_subscriber::fmt()
        .with_env_filter(EnvFilter::from_default_env())
        .try_init();

CHr15F0x avatar Sep 19 '24 08:09 CHr15F0x