mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-611: Update internal failure warnings to reflect the fact that an auth attempt is being ignored, not "denied".
This commit is contained in:
@@ -179,7 +179,9 @@ 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 check for errors earlier in the logs.");
|
||||
logger.warn("Authentication attempt ignored because the relevant "
|
||||
+ "authentication provider could not be loaded. Please "
|
||||
+ "check for errors earlier in the logs.");
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -244,7 +246,9 @@ 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 check for errors earlier in the logs.");
|
||||
logger.warn("Reauthentication attempt ignored because the relevant "
|
||||
+ "authentication provider could not be loaded. Please "
|
||||
+ "check for errors earlier in the logs.");
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -259,7 +263,9 @@ public class AuthenticationProviderFacade implements AuthenticationProvider {
|
||||
|
||||
// Ignore auth attempts if no auth provider could be loaded
|
||||
if (authProvider == null) {
|
||||
logger.warn("User data retrieval attempt denied because the authentication system could not be loaded. Please check for errors earlier in the logs.");
|
||||
logger.warn("User data retrieval attempt ignored because the "
|
||||
+ "relevant authentication provider could not be loaded. "
|
||||
+ "Please check for errors earlier in the logs.");
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -325,7 +331,9 @@ public class AuthenticationProviderFacade implements AuthenticationProvider {
|
||||
|
||||
// Ignore auth attempts if no auth provider could be loaded
|
||||
if (authProvider == null) {
|
||||
logger.warn("User data refresh attempt denied because the authentication system could not be loaded. Please check for errors earlier in the logs.");
|
||||
logger.warn("User data refresh attempt ignored because the "
|
||||
+ "relevant authentication provider could not be loaded. "
|
||||
+ "Please check for errors earlier in the logs.");
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user