Improve logging for lookups (#16287)

This commit is contained in:
aho135 2024-04-16 21:50:09 -07:00 committed by GitHub
parent f3d69f30e6
commit 4fa377c7fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ public class LookupReferencesManager implements LookupExtractorFactoryContainerP
if (lookupConfig.getEnableLookupSyncOnStartup()) {
lookupBeanList = getLookupListFromCoordinator(lookupListeningAnnouncerConfig.getLookupTier());
if (lookupBeanList == null) {
LOG.info("Coordinator is unavailable. Loading saved snapshot instead");
LOG.info("Could not fetch lookups from the coordinator. Loading saved snapshot instead");
lookupBeanList = getLookupListFromSnapshot();
}
} else {