wborn commented on code in PR #1715:
URL: https://github.com/apache/karaf/pull/1715#discussion_r1139063272


##########
features/core/src/main/java/org/apache/karaf/features/internal/service/StaticInstallSupport.java:
##########
@@ -45,7 +45,7 @@ public void refreshPackages(Collection<Bundle> bundles) 
throws InterruptedExcept
 
     @Override
     public void updateBundle(Bundle bundle, String uri, InputStream is) throws 
BundleException {
-        System.err.println("Update bundle is not supported in the static 
installer");
+        System.err.printf("Update bundle is not supported in the static 
installer: bundle %s, uri %s\n", bundle == null ? "null" : 
bundle.getSymbolicName(), uri);

Review Comment:
   ```suggestion
           System.err.printf("Update bundle is not supported in the static 
installer: bundle %s, uri %s%n", bundle == null ? "null" : 
bundle.getSymbolicName(), uri);
   ```
   
   This seems to be an issue in other places in the code base as well.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to