diff options
-rw-r--r-- | src/modules/auth/openid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/auth/openid.rs b/src/modules/auth/openid.rs index ba45fe9..bad9c0c 100644 --- a/src/modules/auth/openid.rs +++ b/src/modules/auth/openid.rs @@ -24,7 +24,7 @@ use http::{ use http_body_util::BodyExt; use hyper::{Response, StatusCode}; use hyper_util::rt::TokioIo; -use log::{debug, info}; +use log::{debug, info, warn}; use percent_encoding::{ percent_decode, percent_decode_str, percent_encode, utf8_percent_encode, NON_ALPHANUMERIC, }; @@ -97,7 +97,7 @@ impl Node for OpenIDAuth { return Err(ServiceError::CustomStatic("salt sep invalid")); } } else { - return Err(ServiceError::CustomStatic("salt invalid")); + warn!("salt invalid"); } } else { debug!("aead invalid"); |