torrust-index 3.0.0

A BitTorrent Index
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Logging setup for the `seeder`.
use tracing::debug;
use tracing::level_filters::LevelFilter;

/// # Panics
///
///
pub fn setup(level: LevelFilter) {
    tracing_subscriber::fmt().with_max_level(level).init();

    debug!("Logging initialized");
}