Skip to content
Snippets Groups Projects
Commit 377fe6a3 authored by buczekp's avatar buczekp
Browse files

[LMS-2142] fixed logging error output

SVN: 20478
parent 665248c8
No related branches found
No related tags found
No related merge requests found
...@@ -205,7 +205,7 @@ public final class RemoteDataSetFileOperationsExecutor implements IDataSetFileOp ...@@ -205,7 +205,7 @@ public final class RemoteDataSetFileOperationsExecutor implements IDataSetFileOp
if (result.isOK() == false) if (result.isOK() == false)
{ {
String errorOutput = StringUtilities.concatenateWithNewLine(result.getErrorOutput()); String errorOutput = StringUtilities.concatenateWithNewLine(result.getOutput());
operationLog.error("Listing files in '" + destination + "' failed with exit value: " operationLog.error("Listing files in '" + destination + "' failed with exit value: "
+ result.getExitValue() + "; error output: " + errorOutput); + result.getExitValue() + "; error output: " + errorOutput);
return BooleanStatus.createError("listing files failed"); return BooleanStatus.createError("listing files failed");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment