Skip to content

Commit

Permalink
Increase verbosity for test that fails on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Sep 7, 2024
1 parent 8f00b1d commit 0228097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
12 changes: 1 addition & 11 deletions tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ pub fn setup_logging() {
use tracing_subscriber::{EnvFilter, fmt, prelude::*};

TRACING_INIT.call_once(|| {
// tracing_subscriber::fmt()
// .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
// .init();
let fmt_layer = tracing_subscriber::fmt::layer()
let fmt_layer = fmt::layer()
.compact()
.with_target(false);
let filter_layer = EnvFilter::try_from_default_env()
Expand All @@ -34,13 +31,6 @@ pub fn setup_logging() {
.with(filter_layer)
.with(fmt_layer)
.init();

/*
tracing_subscriber::registry()
.with(fmt::layer())
.with(EnvFilter::from_default_env())
.init();
*/
});
}

Expand Down
2 changes: 1 addition & 1 deletion tests/concat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ async fn test_concat_heliocentrism_ffmpeg_mkv() {
let out = tmpd.path().join("concat-helio-ffmpeg.mkv");
DashDownloader::new(mpd_url)
.worst_quality()
.verbosity(2)
.verbosity(3)
.with_concat_preference("mkv", "ffmpeg")
.download_to(out.clone()).await
.unwrap();
Expand Down

0 comments on commit 0228097

Please sign in to comment.