Skip to content

Commit

Permalink
Fixed typo in debug output
Browse files Browse the repository at this point in the history
Fixed "succesfully" to "successfully"
  • Loading branch information
butzopower authored and rwinch committed Nov 7, 2016
1 parent aaf8f5c commit 6e287c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Authentication authenticate(Authentication authentication)
byte[] token = auth.getToken();
LOG.debug("Try to validate Kerberos Token");
KerberosTicketValidation ticketValidation = this.ticketValidator.validateTicket(token);
LOG.debug("Succesfully validated " + ticketValidation.username());
LOG.debug("Successfully validated " + ticketValidation.username());
UserDetails userDetails = this.userDetailsService.loadUserByUsername(ticketValidation.username());
userDetailsChecker.check(userDetails);
additionalAuthenticationChecks(userDetails, auth);
Expand Down

0 comments on commit 6e287c8

Please sign in to comment.