Skip to content

Commit

Permalink
more verbose log message when failing to write bgimage file
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Mar 1, 2024
1 parent 91f232a commit 170eb33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public void printRows(InputFieldOutVO inputField) throws Throwable {
try {
values[fileNameColumnIndex] = writeFile(inputField);
} catch (Exception e) {
jobOutput.println(e.getMessage());
jobOutput.println("failed to write file: " + e.getMessage());
values[fileNameColumnIndex] = null;
}
}
Expand Down

0 comments on commit 170eb33

Please sign in to comment.