Fixed typo in logging

Former-commit-id: 4699a65d895dd2268973c7ef4a7fcde5045da119
This commit is contained in:
Jeremy Long
2014-01-05 07:14:59 -05:00
parent 8eb2f738ef
commit b9a2bcb0bf
6 changed files with 11 additions and 11 deletions

View File

@@ -495,8 +495,8 @@ public class DependencyCheckTask extends Task {
Logger.getLogger(DependencyCheckTask.class.getName()).log(Level.FINE, "Unable to generate dependency-check report", ex);
throw new BuildException("Unable to generate dependency-check report", ex);
} catch (Exception ex) {
Logger.getLogger(DependencyCheckTask.class.getName()).log(Level.FINE, "An exception occured; unable to continue task", ex);
throw new BuildException("An exception occured; unable to continue task", ex);
Logger.getLogger(DependencyCheckTask.class.getName()).log(Level.FINE, "An exception occurred; unable to continue task", ex);
throw new BuildException("An exception occurred; unable to continue task", ex);
}
}