9 releases

0.1.8 Sep 12, 2021
0.1.7 Feb 21, 2021
0.1.6 Nov 17, 2020
0.1.5 Dec 25, 2019
0.1.1 Jul 23, 2018

#326 in Debugging

Download history 389/week @ 2023-11-20 808/week @ 2023-11-27 635/week @ 2023-12-04 602/week @ 2023-12-11 809/week @ 2023-12-18 75/week @ 2023-12-25 292/week @ 2024-01-01 652/week @ 2024-01-08 809/week @ 2024-01-15 871/week @ 2024-01-22 444/week @ 2024-01-29 929/week @ 2024-02-05 1059/week @ 2024-02-12 825/week @ 2024-02-19 722/week @ 2024-02-26 934/week @ 2024-03-04

3,774 downloads per month
Used in 6 crates (4 directly)

Apache-2.0/MIT

9KB
68 lines

Log-reroute

Actions Status codecov docs

The log allows setting the target logger, but only once during the lifetime of the application. This library helps with that by providing a logger proxy. The logger behind the proxy can be switched as necessary.


lib.rs:

Crate to reroute logging messages at runtime.

The log logging facade allows to set only a single destination during the whole lifetime of program. If you want to change the logging destination multiple times, you can use Reroute (either directly, or through the init and reroute functions).

This may be useful if you want to log to stderr before you know where the main logs will go.

use fern::Dispatch;
use log::{info, LevelFilter};

fn main() {
    // Enable logging of Debug and more severe messages.
    log::set_max_level(LevelFilter::Debug);
    info!("This log message goes nowhere");
    log_reroute::init().unwrap();
    info!("Still goes nowhere");
    // Log to stderr
    let early_logger = Dispatch::new().chain(std::io::stderr()).into_log().1;
    log_reroute::reroute_boxed(early_logger);
    info!("This one goes to stderr");
    // Load file name from config and log to that file
    let file = tempfile::tempfile().unwrap();
    let logger = Dispatch::new().chain(file).into_log().1;
    log_reroute::reroute_boxed(logger);
    info!("And this one to the file");
    // Stop logging
    log_reroute::reroute(log_reroute::Dummy);
}

Dependencies

~320KB