< prev index next >

src/jdk.jpackage/share/classes/jdk/jpackage/internal/StandardBundlerParam.java

Print this page

        

@@ -495,11 +495,10 @@
 
     static File getPredefinedAppImage(Map<String, ? super Object> params) {
         File applicationImage = null;
         if (PREDEFINED_APP_IMAGE.fetchFrom(params) != null) {
             applicationImage = PREDEFINED_APP_IMAGE.fetchFrom(params);
-            Log.debug("Using App Image from " + applicationImage);
             if (!applicationImage.exists()) {
                 throw new RuntimeException(
                         MessageFormat.format(I18N.getString(
                                 "message.app-image-dir-does-not-exist"),
                                 PREDEFINED_APP_IMAGE.getID(),
< prev index next >