reduced index caching errors to warnings, because it is only an error if it continually happens

This commit is contained in:
kennycud 2025-06-17 15:56:04 -07:00
parent 940c641759
commit 7a7f0e53ac

View File

@ -53,7 +53,7 @@ public class ArbitraryIndexUtils {
try { try {
fillCache(IndexCache.getInstance()); fillCache(IndexCache.getInstance());
} catch (IOException | DataException e) { } catch (IOException | DataException e) {
LOGGER.error(e.getMessage(), e); LOGGER.warn(e.getMessage());
} }
} }
}; };