if (diff.areDifferent()) {
AppContext.RUN.ui.info(
String.format("Codebases \"%s\" and \"%s\" differ:\n%s",
c1.toString(), c2.toString(),
new PatchCodebaseDifferenceRenderer().render(diff)));
} else {
AppContext.RUN.ui.info(
String.format("Codebases \"%s\" and \"%s\" are identical",
c1.toString(), c2.toString()));
}