caesura 0.26.0

An all-in-one command line tool to **transcode FLAC** audio files and **upload to gazelle** based indexers/trackers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rogue_logging::Verbosity::Trace;
use rogue_logging::{Logger, LoggerBuilder};
use std::sync::Arc;

pub fn init_logger() -> Arc<Logger> {
    LoggerBuilder::new()
        .with_exclude_filter("reqwest".to_owned())
        .with_exclude_filter("cookie".to_owned())
        .with_exclude_filter("lofty".to_owned())
        .with_verbosity(Trace)
        .create()
}