fixed logging for #710

This commit is contained in:
Jeremy Long
2017-05-07 16:52:20 -04:00
parent 3677b5f429
commit 0c991af58d

View File

@@ -62,7 +62,7 @@ public class PomParser {
return parse(fis);
} catch (IOException ex) {
LOGGER.debug("", ex);
throw new PomParseException(ex);
throw new PomParseException(String.format("Unable to parse pom '%s'", file.toString()), ex);
}
}