fixed validation for fabfire

This commit is contained in:
Kai Jan Kriegel
2023-02-13 18:44:08 +01:00
parent 0b997547ed
commit 353ae8a6ff
2 changed files with 3 additions and 2 deletions

View File

@ -157,7 +157,8 @@ impl AuthenticationSystem for Authentication {
union_field: "challenge",
};
}
Err(_) => {
Err(e) => {
tracing::error!(error = %e., "authentication failed");
self.state = State::Aborted;
self.build_error(builder);