Skip to content

Commit

Permalink
feat(log) : reorder log and log level for reportFiles (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgautier authored Jun 11, 2024
1 parent 0879752 commit 272cd5e
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,16 +157,17 @@ public void execute() throws MojoExecutionException, MojoFailureException {
}
String response = null;

getLog().debug("cloud from config: " + cloud);
getLog().debug("jiraBaseUrl from config: " + jiraBaseUrl);
getLog().debug("testInfoJson from config: " + testInfoJson);
getLog().debug("useInternalTestProxy from config: " + useInternalTestProxy);

// submit one or more report files
for (int i = 0; i < reportFiles.length; i++) {
String currentReportFile = reportFiles[i];

try {
getLog().debug("cloud from config: " + cloud);
getLog().debug("jiraBaseUrl from config: " + jiraBaseUrl);
getLog().debug("reportFile: " + currentReportFile);
getLog().debug("testInfoJson from config: " + testInfoJson);
getLog().debug("useInternalTestProxy from config: " + useInternalTestProxy);
getLog().info("reportFile: " + currentReportFile);

if (Boolean.TRUE.equals(cloud)) {

Expand Down

0 comments on commit 272cd5e

Please sign in to comment.