Skip to content

Commit e106d9c

Browse files
committed
Improve logging
1 parent 89a9566 commit e106d9c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceOutputHandlerRemoteTask.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ public static void possiblyCacheGenomes(SequenceJob job, List<SequenceOutputFile
112112
}
113113

114114
@NotNull
115+
@Override
115116
public RecordedActionSet run() throws PipelineJobException
116117
{
117118
SequenceTaskHelper.logModuleVersions(getJob().getLogger());
@@ -122,6 +123,7 @@ public RecordedActionSet run() throws PipelineJobException
122123
possiblyCacheGenomes(getPipelineJob(), getPipelineJob().getFiles());
123124

124125
getJob().setStatus(PipelineJob.TaskStatus.running, "Running: " + handler.getName());
126+
getJob().getLogger().info("Output file IDs: " + getPipelineJob().getFiles().stream().map(SequenceOutputFile::getRowid).map(String::valueOf).collect(Collectors.joining(",")));
125127
handler.getProcessor().processFilesRemote(getPipelineJob().getFiles(), ctx);
126128

127129
//Note: on job resume the TaskFileManager could be replaced with one from the resumer

0 commit comments

Comments
 (0)