added logging

This commit is contained in:
Sebastian Sdorra
2011-09-29 14:17:14 +02:00
parent e8163dcf50
commit 52527af7f8

View File

@@ -97,6 +97,12 @@ public class HgBlameViewer implements BlameViewer
{
AssertUtil.assertIsNotEmpty(path);
if (logger.isDebugEnabled())
{
logger.debug("get blame result for {} at revision {}", path,
HgUtil.getRevision(revision));
}
return HgUtil.getResultFromScript(BlameResult.class, blameResultContext,
RESOURCE_BLAME, handler, repository,
revision, path);