src/jdk.jpackager/linux/classes/jdk/jpackager/internal/linux/LinuxAppBundler.java
branchJDK-8200758-branch
changeset 57020 a828547f7e50
parent 57017 1b08af362a30
child 57021 441c020bf626
--- a/src/jdk.jpackager/linux/classes/jdk/jpackager/internal/linux/LinuxAppBundler.java	Mon Nov 05 19:05:15 2018 -0500
+++ b/src/jdk.jpackager/linux/classes/jdk/jpackager/internal/linux/LinuxAppBundler.java	Thu Nov 08 10:56:28 2018 -0500
@@ -71,7 +71,7 @@
             params -> {
                 File f = ICON.fetchFrom(params);
                 if (f != null && !f.getName().toLowerCase().endsWith(".png")) {
-                    Log.info(MessageFormat.format(
+                    Log.error(MessageFormat.format(
                             I18N.getString("message.icon-not-png"), f));
                     return null;
                 }
@@ -173,7 +173,7 @@
             }
             return rootDirectory;
         } catch (Exception ex) {
-            Log.info("Exception: "+ex);
+            Log.error("Exception: "+ex);
             Log.debug(ex);
             return null;
         }
@@ -192,7 +192,7 @@
             }
             return rootDirectory;
         } catch (Exception ex) {
-            Log.info("Exception: "+ex);
+            Log.error("Exception: "+ex);
             Log.debug(ex);
             return null;
         }
@@ -217,7 +217,7 @@
         rootDirectory.mkdirs();
 
         if (!dependentTask) {
-            Log.info(MessageFormat.format(I18N.getString(
+            Log.verbose(MessageFormat.format(I18N.getString(
                     "message.creating-bundle-location"),
                     rootDirectory.getAbsolutePath()));
         }