This is an automated email from the git hooks/post-receive script. sylvestre pushed a commit to branch master in repository jscover.
commit 6045aff589d39a67f148e870dd492c75b680d6a6 Author: tntim96 <[email protected]> Date: Mon Jun 30 14:57:42 2014 +1000 Add more logging --- src/main/java/jscover/util/IoUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/jscover/util/IoUtils.java b/src/main/java/jscover/util/IoUtils.java index 779290e..d2f4797 100644 --- a/src/main/java/jscover/util/IoUtils.java +++ b/src/main/java/jscover/util/IoUtils.java @@ -593,6 +593,7 @@ public class IoUtils { } public String getRelativePath(File file1, File file2) { + logger.log(Level.FINEST, "Get path ''{0}'' relative to ''{1}''", new Object[]{file1, file2}); if (file1.equals(file2)) return ""; return file1.getAbsolutePath().substring(file2.getAbsolutePath().length()+File.separator.length()).replaceAll("\\\\","/"); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jscover.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

