aboutsummaryrefslogtreecommitdiff
path: root/src/controller/login.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/controller/login.rs')
-rw-r--r--src/controller/login.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller/login.rs b/src/controller/login.rs
index dd50a3a..a1bf466 100644
--- a/src/controller/login.rs
+++ b/src/controller/login.rs
@@ -75,7 +75,7 @@ pub async fn login(
}
Ok(false) => not_authorized(assets, templates).await,
Err(err) => {
- error!("Error verifying bcrypt password: {:?}", err);
+ log::error!("Error verifying bcrypt password: {:?}", err);
server_error(assets, templates, "Erreur serveur").await
}
},