Change debug message when security is disabled (#138667) (#138718)

(cherry picked from commit a0b0a8b8e5)

Co-authored-by: Larry Gregory <larry.gregory@elastic.co>
This commit is contained in:
Kibana Machine 2022-08-12 06:48:22 -04:00 committed by GitHub
parent 8effc1dbad
commit 3461f462da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,7 +118,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();
}