Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(log) : reorder log and log level for reportFiles #79

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading