Correct logging of number of abstract services.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@571485 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java b/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
index 766cbcc..ac7625d 100644
--- a/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
+++ b/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
@@ -137,7 +137,7 @@
         // if we have abstract descriptors, write them
         final File adFile = new File(this.outputDirectory, Constants.ABSTRACT_DESCRIPTOR_RELATIVE_PATH);
         if ( !abstractComponents.getComponents().isEmpty() ) {
-            this.getLog().info("Writing abstract service descriptor " + adFile + " with " + components.getComponents().size() + " entries.");
+            this.getLog().info("Writing abstract service descriptor " + adFile + " with " + abstractComponents.getComponents().size() + " entries.");
             adFile.getParentFile().mkdirs();
             ComponentDescriptorIO.write(abstractComponents, adFile);
         } else {
@@ -419,7 +419,7 @@
                 || name.equals(org.osgi.framework.Constants.SERVICE_VENDOR)
                 || name.equals(ConfigurationAdmin.SERVICE_BUNDLELOCATION)
                 || name.equals(ConfigurationAdmin.SERVICE_FACTORYPID);
-            
+
             // if this is a public property and the component is generating metatype info
             // store the information!
             if ( !isPrivate && ocd != null ) {