Function set_log_level

Source
pub fn set_log_level(level: LogLevel)
Expand description

Sets the log level to the provided value.

ยงExamples

use logger_rust::*;
 
fn main() {
// Set the log level to File
  set_log_level(LogLevel::File);
}