Merge pull request elastic/elasticsearch#3178 from areek/fix/3177
Fix license expiry logging Original commit: elastic/x-pack-elasticsearch@29d9f90af2
This commit is contained in:
commit
e28c2a8c94
|
@ -104,7 +104,7 @@ public class LicenseService extends AbstractLifecycleComponent implements Cluste
|
|||
}
|
||||
|
||||
private void logExpirationWarning(long expirationMillis, boolean expired) {
|
||||
String expiredMsg = expired ? "will expire" : "expired";
|
||||
String expiredMsg = expired ? "expired" : "will expire";
|
||||
String general = LoggerMessageFormat.format(null, "\n" +
|
||||
"#\n" +
|
||||
"# License [{}] on [{}]. If you have a new license, please update it.\n" +
|
||||
|
|
Loading…
Reference in New Issue