Skip to content

Commit 0b13928

Browse files
committed
reduce log level
1 parent ccc604d commit 0b13928

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use simple_logger::SimpleLogger;
21
use std::error::Error;
32

43
mod args;
@@ -8,7 +7,7 @@ mod server;
87
#[tokio::main]
98
async fn main() -> Result<(), Box<dyn Error>> {
109
// logging setup
11-
SimpleLogger::new().init().unwrap();
10+
simple_logger::init_with_level(log::Level::Info).unwrap();
1211

1312
// get args
1413
let opts = args::parse();

0 commit comments

Comments
 (0)