added missing log line

This commit is contained in:
Sebastian Sdorra
2012-05-19 12:29:24 +02:00
parent 82b880a479
commit 0e3bb065dd

View File

@@ -122,7 +122,10 @@ public class SvnChangesetViewer implements ChangesetViewer
logger.warn("could not convert revision", ex);
}
}
catch (SVNException ex) {}
catch (SVNException ex)
{
logger.error("could not open repository", ex);
}
finally
{
SvnUtil.closeSession(repository);