set default log level to info
This commit is contained in:
parent
1b98cbac1a
commit
ee9e682d9e
1 changed files with 3 additions and 1 deletions
|
@ -7,7 +7,9 @@ mod db;
|
|||
|
||||
#[actix_web::main]
|
||||
async fn main() -> Result<(), std::io::Error> {
|
||||
env_logger::init();
|
||||
env_logger::builder()
|
||||
.filter_level(log::LevelFilter::Info)
|
||||
.init();
|
||||
|
||||
let config = config::parse_config();
|
||||
let db = db::DataBase::sqlite().await;
|
||||
|
|
Loading…
Add table
Reference in a new issue