You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2009/08/26 17:44:33 UTC

svn commit: r808061 - /sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java

Author: bdelacretaz
Date: Wed Aug 26 15:44:33 2009
New Revision: 808061

URL: http://svn.apache.org/viewvc?rev=808061&view=rev
Log:
SLING-1078 - log configuration PID

Modified:
    sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java

Modified: sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java
URL: http://svn.apache.org/viewvc/sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java?rev=808061&r1=808060&r2=808061&view=diff
==============================================================================
--- sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java (original)
+++ sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/ConfigTaskCreator.java Wed Aug 26 15:44:33 2009
@@ -60,7 +60,7 @@
 		    final String previousDigest = digests.get(pid);
 		    if(toActivate.getDigest().equals(previousDigest)) {
 		        if(ctx.getLogService() != null) {
-		            ctx.getLogService().log(LogService.LOG_DEBUG, "Configuration already installed, ignored: " + toActivate); 
+		            ctx.getLogService().log(LogService.LOG_DEBUG, "Configuration (" + pid + ") already installed, ignored: " + toActivate); 
 		        }
 		    } else {
 		        tasks.add(new ConfigInstallTask(toActivate));