Skip to content

Commit

Permalink
merge conflicts (in loggers)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoJandre committed Sep 19, 2024
1 parent 41e7a2a commit 477beaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ public IPAddressVO associateIPToGuestNetwork(long ipId, long networkId, boolean
}
return _ipAddressDao.findById(ipId);
} catch (Exception e) {
s_logger.error(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
logger.error(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
throw new CloudRuntimeException(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
} finally {
if (!success && releaseOnFailure) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3195,7 +3195,7 @@ public void doInTransactionWithoutResult(final TransactionStatus status) {
}
});
} catch (Exception e) {
s_logger.error("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
logger.error("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
throw new CloudRuntimeException("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
}

Expand Down

0 comments on commit 477beaf

Please sign in to comment.