commit | 5ff55e0ecc515beb01ef317d7dc5137b2c9a10da | [log] [tgz] |
---|---|---|
author | Carsten Ziegeler <cziegeler@apache.org> | Thu Aug 27 14:49:56 2015 +0000 |
committer | Carsten Ziegeler <cziegeler@apache.org> | Thu Aug 27 14:49:56 2015 +0000 |
tree | 84713469323be18dc8b80ab5be4572f8f2b7cb92 | |
parent | e9b20a358d2d8bb8eea358f76977e0eadf868fd0 [diff] |
FELIX-5020 : Don't log exception if metatype is not available git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1698176 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scr/changelog.txt b/scr/changelog.txt index 9fe88cd..d151138 100644 --- a/scr/changelog.txt +++ b/scr/changelog.txt
@@ -2,6 +2,7 @@ --------------------------- ** Improvement * [FELIX-5001] scr:list Gogo command should display component configurations + * [FELIX-5020] Don't log exception if metatype is not available Changes from 1.8.2 to 2.0.0
diff --git a/scr/src/main/java/org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory.java b/scr/src/main/java/org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory.java index 91b256c..56d66b3 100644 --- a/scr/src/main/java/org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory.java +++ b/scr/src/main/java/org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory.java
@@ -59,7 +59,7 @@ LogService.LOG_ERROR, null, "Cannot create MetaType providing ManagedService; not providing Metatype information but just accepting configuration", - t ); + null ); } return new ScrManagedService( this.scrConfiguration ); }