From 4195ac6d19c42e25137b26cf81f09af7344beada Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Sun, 4 Feb 2018 15:56:59 -0500 Subject: [PATCH] GUACAMOLE-197: Fix errors that happen when you try to code before coffee. --- .../guacamole/auth/radius/AuthenticationProviderService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/AuthenticationProviderService.java b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/AuthenticationProviderService.java index 630173438..852eb7206 100644 --- a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/AuthenticationProviderService.java +++ b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/AuthenticationProviderService.java @@ -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) {