mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-13 15:42:25 +00:00
SEC-1654: Correct debug output in DigestAuthenticationFilter.
This commit is contained in:
parent
d0bada2bad
commit
537d8f108a
@ -130,8 +130,8 @@ public class DigestAuthenticationFilter extends GenericFilterBean implements Mes
|
||||
// Check all required parameters were supplied (ie RFC 2069)
|
||||
if ((username == null) || (realm == null) || (nonce == null) || (uri == null) || (response == null)) {
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("extracted username: '" + username + "'; realm: '" + username + "'; nonce: '"
|
||||
+ username + "'; uri: '" + username + "'; response: '" + username + "'");
|
||||
logger.debug("extracted username: '" + username + "'; realm: '" + realm + "'; nonce: '"
|
||||
+ nonce + "'; uri: '" + uri + "'; response: '" + responseDigest + "'");
|
||||
}
|
||||
|
||||
fail(request, response,
|
||||
|
Loading…
x
Reference in New Issue
Block a user