Skip to content

Commit 2869441

Browse files
committed
Update error message
1 parent 31de445 commit 2869441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,13 @@ else if (!d.getFile().exists())
239239
ExpRun run = ExperimentService.get().getExpRun(m.getRunId());
240240
if (run == null)
241241
{
242-
log.error("Missing runId: " + m.getRunId());
242+
log.info("Not ExpRun found for runId: " + m.getRunId());
243243
}
244244
else if (run.getFilePathRootPath() == null)
245245
{
246246
log.error("Run fileroot is null for runId: " + m.getRunId());
247247
}
248-
else if (!run.getFilePathRootPath().toFile().exists())
248+
else if (!run.getFilePathRoot().exists())
249249
{
250250
log.error("Run fileroot does not exist: " + m.getRunId() + " / " + run.getFilePathRoot());
251251
}

0 commit comments

Comments
 (0)