Author: hboutemy Date: Sun Jan 3 14:25:36 2016 New Revision: 1722723 URL: http://svn.apache.org/viewvc?rev=1722723&view=rev Log: improved debug message
Modified: maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java Modified: maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java?rev=1722723&r1=1722722&r2=1722723&view=diff ============================================================================== --- maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java (original) +++ maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java Sun Jan 3 14:25:36 2016 @@ -985,7 +985,8 @@ public class DefaultSiteTool } else { - getLogger().debug( "Skipped site descriptor for locale " + locale.getLanguage() ); + getLogger().debug( "No site descriptor found for " + project.getId() + " for locale " + + locale.getLanguage() ); } } catch ( ArtifactNotFoundException e ) @@ -1022,7 +1023,7 @@ public class DefaultSiteTool // we use zero length files to avoid re-resolution (see below) if ( result.length() == 0 ) { - getLogger().debug( "Skipped remote site descriptor check" ); + getLogger().debug( "No site descriptor found for " + project.getId() + " without locale" ); result = null; } } @@ -1151,7 +1152,7 @@ public class DefaultSiteTool String parentDistMgmnt = getDistMgmntSiteUrl( parentProject ); if ( getLogger().isDebugEnabled() ) { - getLogger().debug( "decoration model inheritance: assembling child with level " + depth + getLogger().debug( "Site decoration model inheritance: assembling child with level " + depth + " parent: distributionManagement.site.url child = " + projectDistMgmnt + " and parent = " + parentDistMgmnt ); }