Browse Source

Minor improvement to error message

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272220 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
c588308c64
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/main/org/apache/tools/ant/taskdefs/Jar.java

+ 2
- 1
src/main/org/apache/tools/ant/taskdefs/Jar.java View File

@@ -425,7 +425,8 @@ public class Jar extends Zip {
}
catch (Exception e) {
// any problems and we will rebuild
log("Updating jar since cannot read current jar manifest: " + e.getClass().getName() + e.getMessage(),
log("Updating jar since cannot read current jar manifest: "
+ e.getClass().getName() + " - " + e.getMessage(),
Project.MSG_VERBOSE);
return false;
}


Loading…
Cancel
Save