From ad28ca6da6c33779eb99f9b4cb32cfe7821957a4 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 17 May 2015 14:56:23 -0700 Subject: [PATCH] GUAC-587: Fix missing wording in log messages. (Please what?) --- .../net/basic/extension/AuthenticationProviderFacade.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/AuthenticationProviderFacade.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/AuthenticationProviderFacade.java index b5dd36d4a..8a5b0d42d 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/AuthenticationProviderFacade.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/AuthenticationProviderFacade.java @@ -123,7 +123,7 @@ public class AuthenticationProviderFacade implements AuthenticationProvider { // Ignore auth attempts if no auth provider could be loaded if (authProvider == null) { - logger.warn("Authentication attempt denied because the authentication system could not be loaded. Please for errors earlier in the logs."); + logger.warn("Authentication attempt denied because the authentication system could not be loaded. Please check for errors earlier in the logs."); throw new GuacamoleInvalidCredentialsException("Permission denied.", CredentialsInfo.USERNAME_PASSWORD); } @@ -138,7 +138,7 @@ public class AuthenticationProviderFacade implements AuthenticationProvider { // Ignore auth attempts if no auth provider could be loaded if (authProvider == null) { - logger.warn("Reauthentication attempt denied because the authentication system could not be loaded. Please for errors earlier in the logs."); + logger.warn("Reauthentication attempt denied because the authentication system could not be loaded. Please check for errors earlier in the logs."); throw new GuacamoleInvalidCredentialsException("Permission denied.", CredentialsInfo.USERNAME_PASSWORD); }