Skip to content

Commit

Permalink
reduce logging (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-marcel committed Mar 5, 2024
1 parent f122e50 commit 384a190
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,9 @@ class UploadReportsStep extends Step {
UploadResult uploadResult = apiClient.uploadReport(reportId, uploadOrder)
if (uploadResult.reportLink != null && !uploadResult.reportLink.isEmpty()) {
cntStable += 1
listener.logger.println(" -> Successful! Link to report: ${uploadResult.reportLink}")
} else {
listener.logger.println(" -> Error! test.guide returns the message: '${uploadResult.uploadMessage}'")
}
listener.logger.println(" -> ${uploadResult.uploadMessage}")

result.add(uploadResult)
}

Expand Down

0 comments on commit 384a190

Please sign in to comment.