mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-14 08:02:22 +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)
|
// Check all required parameters were supplied (ie RFC 2069)
|
||||||
if ((username == null) || (realm == null) || (nonce == null) || (uri == null) || (response == null)) {
|
if ((username == null) || (realm == null) || (nonce == null) || (uri == null) || (response == null)) {
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("extracted username: '" + username + "'; realm: '" + username + "'; nonce: '"
|
logger.debug("extracted username: '" + username + "'; realm: '" + realm + "'; nonce: '"
|
||||||
+ username + "'; uri: '" + username + "'; response: '" + username + "'");
|
+ nonce + "'; uri: '" + uri + "'; response: '" + responseDigest + "'");
|
||||||
}
|
}
|
||||||
|
|
||||||
fail(request, response,
|
fail(request, response,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user