Skip to content

Commit 10c8513

Browse files
committed
Improve job logging
1 parent 9beb005 commit 10c8513

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ private void verifySequenceDataPresent(Logger log)
145145
for (ReadDataImpl rd : readDatas)
146146
{
147147
i++;
148-
if (i % 250 == 0)
148+
if (i % 1000 == 0)
149149
{
150-
log.info("readdata " + i + " of " + readDatas.size());
150+
log.info("readdata " + i + " of " + readDatas.size() + ". Current container: " + ContainerManager.getForId(rd.getContainer()).getPath());
151151
}
152152

153153
if (rd.getFileId1() != null)
@@ -208,9 +208,9 @@ else if (!d.getFile().exists())
208208
for (AnalysisModelImpl m : analyses)
209209
{
210210
i++;
211-
if (i % 250 == 0)
211+
if (i % 500 == 0)
212212
{
213-
log.info("analysis " + i + " of " + analyses.size());
213+
log.info("analysis " + i + " of " + analyses.size() + ". Current container: " + ContainerManager.getForId(m.getContainer()).getPath());
214214
}
215215

216216
if (m.getAlignmentFile() != null)

0 commit comments

Comments
 (0)