Merge "MergeOp: Log IntegrationExceptions that are treated as conflict only as warning"
This commit is contained in:
@@ -504,7 +504,7 @@ public class MergeOp implements AutoCloseable {
|
|||||||
try {
|
try {
|
||||||
integrateIntoHistory(cs);
|
integrateIntoHistory(cs);
|
||||||
} catch (IntegrationException e) {
|
} 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);
|
throw new ResourceConflictException(e.getMessage(), e);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user