Skip to content

Commit f2b1a32

Browse files
committed
Change error to warning
1 parent 5309e0c commit f2b1a32

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mcc/src/org/labkey/mcc/MccMaintenanceTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private void checkForDuplicateAliases(Logger log)
9292
long missingRecords = new TableSelector(dsTableInfo, new SimpleFilter(FieldKey.fromString("Id/Demographics/Id"), null, CompareType.ISBLANK), null).getRowCount();
9393
if (missingRecords > 0)
9494
{
95-
log.error("Found " + missingRecords + " dataset records with an ID not found in demographics for: " + ds.getLabel() + " / " + ds.getContainer().getPath());
95+
log.warn("Found " + missingRecords + " dataset records with an ID not found in demographics for: " + ds.getLabel() + " / " + ds.getContainer().getPath());
9696
}
9797
}
9898
}

0 commit comments

Comments
 (0)