Add missing Full Data error logging

This commit is contained in:
James Seibel
2023-10-07 16:11:06 -05:00
parent 526f483bfb
commit edaee7edd2
2 changed files with 3 additions and 2 deletions
@@ -37,7 +37,7 @@ public interface IIncompleteFullDataSource extends IFullDataSource
DhSectionPos inputPos = inputSource.getSectionPos();
DhSectionPos thisPos = this.getSectionPos();
LodUtil.assertTrue(inputPos.getDetailLevel() < thisPos.getDetailLevel());
LodUtil.assertTrue(inputPos.overlapsExactly(this.getSectionPos()));
LodUtil.assertTrue(inputPos.overlapsExactly(this.getSectionPos()), "input source at pos: "+inputPos+" doesn't overlap with this source's pos: "+thisPos);
if (inputSource.isEmpty())
{
@@ -267,7 +267,8 @@ public class FullDataMetaFile extends AbstractMetaDataContainerFile implements I
}
catch (Exception ex)
{
/// TODO temporary fix
LOGGER.error("Full Data Load error: "+ ex.getMessage(), ex);
dataSourceLoadFuture.completeExceptionally(ex);
this.dataSourceLoadFutureRef.set(null);