Fix license log message levels
Now we log license expiry, invalid and grace message as warn and log license valid message as debug closes elastic/elasticsearch#2230 Original commit: elastic/x-pack-elasticsearch@569c169136
This commit is contained in:
parent
946cbfb997
commit
81e14c5617
|
@ -515,7 +515,7 @@ public class LicensesService extends AbstractLifecycleComponent<LicensesService>
|
||||||
logger.debug("notifying [{}] listeners", registeredLicensees.size());
|
logger.debug("notifying [{}] listeners", registeredLicensees.size());
|
||||||
long now = System.currentTimeMillis();
|
long now = System.currentTimeMillis();
|
||||||
if (license.issueDate() > now) {
|
if (license.issueDate() > now) {
|
||||||
logger.info("license [{}] - invalid", license.uid());
|
logger.warn("license [{}] - invalid", license.uid());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
long expiryDuration = license.expiryDate() - now;
|
long expiryDuration = license.expiryDate() - now;
|
||||||
|
@ -523,7 +523,7 @@ public class LicensesService extends AbstractLifecycleComponent<LicensesService>
|
||||||
for (InternalLicensee licensee : registeredLicensees) {
|
for (InternalLicensee licensee : registeredLicensees) {
|
||||||
licensee.onChange(license, LicenseState.ENABLED);
|
licensee.onChange(license, LicenseState.ENABLED);
|
||||||
}
|
}
|
||||||
logger.info("license [{}] - valid", license.uid());
|
logger.debug("license [{}] - valid", license.uid());
|
||||||
final TimeValue delay = TimeValue.timeValueMillis(expiryDuration);
|
final TimeValue delay = TimeValue.timeValueMillis(expiryDuration);
|
||||||
// cancel any previous notifications
|
// cancel any previous notifications
|
||||||
cancelNotifications(expiryNotifications);
|
cancelNotifications(expiryNotifications);
|
||||||
|
@ -537,7 +537,7 @@ public class LicensesService extends AbstractLifecycleComponent<LicensesService>
|
||||||
for (InternalLicensee licensee : registeredLicensees) {
|
for (InternalLicensee licensee : registeredLicensees) {
|
||||||
licensee.onChange(license, LicenseState.GRACE_PERIOD);
|
licensee.onChange(license, LicenseState.GRACE_PERIOD);
|
||||||
}
|
}
|
||||||
logger.info("license [{}] - grace", license.uid());
|
logger.warn("license [{}] - grace", license.uid());
|
||||||
final TimeValue delay = TimeValue.timeValueMillis(expiryDuration + gracePeriodDuration.getMillis());
|
final TimeValue delay = TimeValue.timeValueMillis(expiryDuration + gracePeriodDuration.getMillis());
|
||||||
// cancel any previous notifications
|
// cancel any previous notifications
|
||||||
cancelNotifications(expiryNotifications);
|
cancelNotifications(expiryNotifications);
|
||||||
|
@ -551,7 +551,7 @@ public class LicensesService extends AbstractLifecycleComponent<LicensesService>
|
||||||
for (InternalLicensee licensee : registeredLicensees) {
|
for (InternalLicensee licensee : registeredLicensees) {
|
||||||
licensee.onChange(license, LicenseState.DISABLED);
|
licensee.onChange(license, LicenseState.DISABLED);
|
||||||
}
|
}
|
||||||
logger.info("license [{}] - expired", license.uid());
|
logger.warn("license [{}] - expired", license.uid());
|
||||||
}
|
}
|
||||||
if (!license.equals(currentLicense.get())) {
|
if (!license.equals(currentLicense.get())) {
|
||||||
currentLicense.set(license);
|
currentLicense.set(license);
|
||||||
|
|
Loading…
Reference in New Issue