Add missing Full Data error logging
This commit is contained in:
+1
-1
@@ -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())
|
||||
{
|
||||
|
||||
+2
-1
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user