Merge "MergeOp: Log IntegrationExceptions that are treated as conflict only as warning"

This commit is contained in:
David Pursehouse
2019-10-18 13:13:14 +00:00
committed by Gerrit Code Review

View File

@@ -504,7 +504,7 @@ public class MergeOp implements AutoCloseable {
try {
integrateIntoHistory(cs);
} catch (IntegrationException e) {
logger.atSevere().withCause(e).log("Error from integrateIntoHistory");
logger.atWarning().withCause(e).log("Error from integrateIntoHistory");
throw new ResourceConflictException(e.getMessage(), e);
}
return null;