Reduce log spam when in DEBUG mode.

This commit is contained in:
CalDescent 2022-02-01 22:04:12 +00:00
parent 97199d9b91
commit 8ccb158241

View File

@ -363,7 +363,7 @@ public class ArbitraryDataReader {
} }
// Throw a missing data exception, which allows subsequent layers to fetch data // Throw a missing data exception, which allows subsequent layers to fetch data
LOGGER.debug(message); LOGGER.trace(message);
throw new MissingDataException(message); throw new MissingDataException(message);
} }
} }