summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-03-28 10:18:46 +0800
committerKeuin <[email protected]>2022-03-28 10:18:46 +0800
commitc328eb5d6125e1799f05bc82c3834a850172556a (patch)
tree64caa7beec36dc5289e9fcce4ec04b40d528667c /src/main.rs
parentc8f197bf58f198e1cb70d6ea3ae49fc51434b718 (diff)
Code reformat.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index e0cc8cc..1c1bd48 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -45,7 +45,7 @@ async fn main() {
Ok(l) => l,
Err(_) => {
eprintln!("Invalid log level: {}. Use {:?} instead.",
- config.log_level, DEFAULT_LOG_LEVEL);
+ config.log_level, DEFAULT_LOG_LEVEL);
DEFAULT_LOG_LEVEL
}
};
@@ -88,7 +88,7 @@ async fn main() {
debug!("Waiting for Ctrl-C in main coroutine...");
tokio::signal::ctrl_c().await.unwrap();
-
+
// gracefully shutdown the database connection
info!("Closing database...");
db.close().await;