Index: src/main/java/org/apache/maven/plugin/jira/AbstractJiraDownloader.java =================================================================== --- src/main/java/org/apache/maven/plugin/jira/AbstractJiraDownloader.java (revision 628064) +++ src/main/java/org/apache/maven/plugin/jira/AbstractJiraDownloader.java (working copy) @@ -347,7 +347,7 @@ { if ( jiraId == null || jiraId.length() == 0 ) { - log.info( "The JIRA URL " + project.getIssueManagement().getUrl() + log.debug( "The JIRA URL " + project.getIssueManagement().getUrl() + " doesn't include a pid, trying to extract it from JIRA." ); jiraId = JiraHelper.getPidFromJira( log, project.getIssueManagement().getUrl(), client ); } @@ -427,7 +427,7 @@ { jiraUrl = jiraUrl.substring( 0, jiraUrl.lastIndexOf( "/" ) ); } - getLog().info( "JIRA lives at: " + jiraUrl ); + getLog().debug( "JIRA lives at: " + jiraUrl ); urlMap.put( "url", jiraUrl ); @@ -449,7 +449,7 @@ Credentials defaultcreds = new UsernamePasswordCredentials( webUser, webPassword ); - getLog().info( "Using username: " + webUser + " for Basic Authentication." ); + getLog().debug( "Using username: " + webUser + " for Basic Authentication." ); client.getState().setCredentials( new AuthScope( null, AuthScope.ANY_PORT, null, AuthScope.ANY_SCHEME ), defaultcreds ); @@ -481,7 +481,7 @@ { password = StringUtils.repeat( "*", jiraPassword.length() ); } - getLog().info( "Login URL: " + loginLink + "&os_password=" + password ); + getLog().debug( "Login URL: " + loginLink + "&os_password=" + password ); loginLink.append( "&os_password=" ).append( jiraPassword ); @@ -496,7 +496,7 @@ if ( loginSucceeded( loginGet ) ) { - getLog().info( "Successfully logged in into JIRA." ); + getLog().debug( "Successfully logged in into JIRA." ); return true; } else @@ -584,18 +584,18 @@ proxyPass = settings.getActiveProxy().getPassword(); - getLog().info( proxyPass ); + getLog().debug( proxyPass ); } if ( proxyHost != null ) { client.getHostConfiguration().setProxy( proxyHost, proxyPort ); - getLog().info( "Using proxy: " + proxyHost + " at port " + proxyPort ); + getLog().debug( "Using proxy: " + proxyHost + " at port " + proxyPort ); if ( proxyUser != null ) { - getLog().info( "Using proxy user: " + proxyUser ); + getLog().debug( "Using proxy user: " + proxyUser ); client.getState().setProxyCredentials( new AuthScope( null, AuthScope.ANY_PORT, null, @@ -617,7 +617,7 @@ { GetMethod gm = new GetMethod( link ); - getLog().info( "Downloading from JIRA at: " + link ); + getLog().debug( "Downloading from JIRA at: " + link ); gm.setFollowRedirects( true ); @@ -627,7 +627,7 @@ if ( sl == null ) { - getLog().info( "Unknown error validating link: " + link ); + getLog().error( "Unknown error validating link: " + link ); return; } @@ -639,7 +639,7 @@ if ( locationHeader == null ) { - getLog().info( "Site sent redirect, but did not set Location header" ); + getLog().warn( "Site sent redirect, but did not set Location header" ); } else { @@ -667,7 +667,7 @@ pw.close(); - getLog().info( "Downloading from JIRA was successful" ); + getLog().debug( "Downloading from JIRA was successful" ); } else { Index: src/main/java/org/apache/maven/plugin/jira/JiraHelper.java =================================================================== --- src/main/java/org/apache/maven/plugin/jira/JiraHelper.java (revision 628064) +++ src/main/java/org/apache/maven/plugin/jira/JiraHelper.java (working copy) @@ -53,7 +53,7 @@ try { client.executeMethod( gm ); - log.info( "Successfully reached JIRA." ); + log.debug( "Successfully reached JIRA." ); projectPage = gm.getResponseBodyAsString(); } catch ( Exception e ) Index: src/main/java/org/apache/maven/plugin/jira/JiraReportGenerator.java =================================================================== --- src/main/java/org/apache/maven/plugin/jira/JiraReportGenerator.java (revision 628064) +++ src/main/java/org/apache/maven/plugin/jira/JiraReportGenerator.java (working copy) @@ -137,7 +137,7 @@ if ( onlyCurrentVersion ) { issueList = getIssuesForCurrentRelease( issueList ); - log.info( "The JIRA Report will contain issues only for the current version." ); + log.debug( "The JIRA Report will contain issues only for the current version." ); } sinkBeginReport( sink, bundle );