I am using SVNKIT version 1.8.11 and would like to display a more detailed message on the console about which files are checked or updated.
If you have this snippet:
System.out.println("Updating... '" + workingCopyDirectory.toString() + "'");
final SvnOperationFactory svnOperationFactory = new SvnOperationFactory();
svnOperationFactory.setAuthenticationManager(getAuthManager().getAuthenticationManager());
try {
final SvnUpdate svnUpdate = svnOperationFactory.createUpdate();
svnUpdate.setSingleTarget(SvnTarget.fromFile(workingCopyDirectory.toFile()));
svnUpdate.setAllowUnversionedObstructions(false);
svnUpdate.setDepth(SVNDepth.INFINITY);
svnUpdate.run();
System.out.println("Update of local code base '" + workingCopyDirectory.toString() + "' completed.");
} finally {
svnOperationFactory.dispose();
}
Is there a way to configure SVNKIT to tell me which file it is currently updating / checking?
source
share