1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
mod test_utils;
use flexi_logger::{detailed_format, FileSpec, Logger, LoggerHandle};
use log::*;
#[test]
fn test_mods_off() {
let handle: LoggerHandle = Logger::try_with_env_or_str("info, test_mods_off::mymod1=off")
.unwrap()
.format(detailed_format)
.log_to_file(
FileSpec::default()
.suppress_timestamp()
.directory(self::test_utils::dir()),
)
.start()
.unwrap_or_else(|e| panic!("Logger initialization failed with {e}"));
error!("This is an error message");
warn!("This is a warning");
mymod1::test_traces();
info!("This is an info message");
debug!("This is a debug message - you must not see it!");
trace!("This is a trace message - you must not see it!");
handle.validate_logs(&[
("ERROR", "test_mods", "error"),
("WARN", "test_mods", "warning"),
("INFO", "test_mods", "info"),
]);
}
mod mymod1 {
use log::*;
pub fn test_traces() {
error!("This is an error message");
warn!("This is a warning");
info!("This is an info message");
debug!("This is a debug message");
trace!("This is a trace message - you must not see it!");
self::mysubmod::test_traces();
}
mod mysubmod {
use log::*;
pub fn test_traces() {
error!("This is an error message - you must not see it!");
warn!("This is a warning - you must not see it!");
info!("This is an info message - you must not see it!");
debug!("This is a debug message - you must not see it!");
trace!("This is a trace message - you must not see it!");
}
}
}
|