Skip to content

Commit 8218b32

Browse files
committed
Fix typo in logging
1 parent f16999b commit 8218b32

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

singlecell/api-src/org/labkey/api/singlecell/pipeline/AbstractSingleCellPipelineStep.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ private void handlePossibleFailure(SequenceOutputHandler.JobContext ctx, String
563563
File html = getExpectedHtmlFile(ctx, outputPrefix);
564564
if (html.exists())
565565
{
566-
ctx.getLogger().info("Copying HTML locally for debugging: ", html.getName());
566+
ctx.getLogger().info("Copying HTML locally for debugging: " + html.getName());
567567
File target = new File(ctx.getSourceDirectory(), html.getName());
568568
if (target.exists())
569569
{
@@ -572,6 +572,10 @@ private void handlePossibleFailure(SequenceOutputHandler.JobContext ctx, String
572572

573573
Files.copy(html.toPath(), target.toPath());
574574
}
575+
else
576+
{
577+
ctx.getLogger().info("HTML not found: " + html.getPath());
578+
}
575579

576580
throw new PipelineJobException(getProvider().getName() + " Errors: " + StringUtils.join(errors, ";"));
577581
}

0 commit comments

Comments
 (0)