Fixed bug

This commit is contained in:
Franklin 2022-08-29 13:35:37 -04:00
parent 1f0fc2f605
commit 4c43aba220
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -183,7 +183,7 @@ dependencies = [
[[package]]
name = "actix-web-utils"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"actix-web",
"log",

View File

@ -1,6 +1,6 @@
[package]
name = "actix-web-utils"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Franklin E. Blanco"]
description = "Just some useful addons for actix web."

View File

@ -4,7 +4,7 @@ pub struct SimpleLogger;
impl log::Log for SimpleLogger {
fn enabled(&self, metadata: &Metadata) -> bool {
metadata.level() <= Level::Info
metadata.level() <= Level::Trace
}
fn log(&self, record: &Record) {

View File

@ -6,7 +6,7 @@ static LOGGER: SimpleLogger = SimpleLogger;
pub fn init_logger_default() -> Result<(), SetLoggerError> {
log::set_logger(&LOGGER)
.map(|()| log::set_max_level(LevelFilter::Trace))
.map(|()| log::set_max_level(LevelFilter::Info))
}
/// Made this get an integer so that you don't have to import the Log library in your code too, as the LevelFilter enum is inside it.
/// 0 -> Off, 1 -> Trace, 2 -> Debug, 3 -> Info, 4 -> Warn, 5 -> Error