Change debug message when security is disabled (#138667)

This commit is contained in:
Larry Gregory 2022-08-12 05:43:06 -04:00 committed by GitHub
parent 79763f2581
commit a0b0a8b8e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ export class AuthenticationService {
// If security is disabled, then continue with no user credentials.
if (!license.isEnabled()) {
this.logger.debug(
'Current license does not support any security features, authentication is not needed.'
'Authentication is not required, as security features are disabled in Elasticsearch.'
);
return t.authenticated();
}