reduced logging level for invalid formatting

This commit is contained in:
kennycud 2025-03-21 18:43:06 -07:00
parent bd4472c2c0
commit a893888a2e

View File

@ -111,7 +111,7 @@ public class ArbitraryIndexUtils {
indexDetails.add( new ArbitraryDataIndexDetail(indexResource.name, rank, indices.get(rank - 1) )); indexDetails.add( new ArbitraryDataIndexDetail(indexResource.name, rank, indices.get(rank - 1) ));
} }
} catch (InvalidFormatException e) { } catch (InvalidFormatException e) {
LOGGER.warn("invalid format, skipping: " + indexResource); LOGGER.debug("invalid format, skipping: " + indexResource);
} }
} }