Skip to content

Commit 310020e

Browse files
committed
Reduce maintenance job warning
1 parent 66e70e9 commit 310020e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ else if (!d.getFile().exists())
172172
{
173173
if (d != null && d.getFile() != null && d.getFile().exists())
174174
{
175-
log.error("ReadData marked as archived, but file exists: " + rd.getRowid() + ", " + rd.getFileId1() + ", " + d.getFile().getPath() + " for container: " + (c == null ? rd.getContainer() : c.getPath()));
175+
// NOTE: ultimately remove this:
176+
log.info("ReadData marked as archived, but file exists: " + rd.getRowid() + ", " + rd.getFileId1() + ", " + d.getFile().getPath() + " for container: " + (c == null ? rd.getContainer() : c.getPath()));
176177
}
177178
}
178179
}

0 commit comments

Comments
 (0)