Node node = session.getNode(path);
try {
if (opts.isDryRun()) {
track("V", String.format("%s (---)", path));
} else {
Version v = node.checkin();
track("V", String.format("%s (%s)", path, v.getName()));
}
} catch (RepositoryException e) {
log.error("Error while checkin node {}: {}",path, e.toString());
}