GUACAMOLE-197: Fix errors that happen when you try to code before coffee.

This commit is contained in:
Nick Couchman
2018-02-04 15:56:59 -05:00
parent b9a6880470
commit 4195ac6d19

View File

@@ -170,8 +170,8 @@ public class AuthenticationProviderService {
stateBytes);
}
catch (IllegalArgumentException e) {
logger.warn("Illegal hexadecimal value while parsing RADIUS state string.", e.getMessage());
logger.debug("Encountered exception while attepmting to perse the hexidecimanl state value.", e);
logger.warn("Illegal hexadecimal value while parsing RADIUS state string: {}", e.getMessage());
logger.debug("Encountered exception while attempting to parse the hexidecimal state value.", e);
throw new GuacamoleInvalidCredentialsException("Authentication error.", CredentialsInfo.USERNAME_PASSWORD);
}
catch (GuacamoleException e) {