Skip to content

Commit 477beaf

Browse files
committed
merge conflicts (in loggers)
1 parent 41e7a2a commit 477beaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/src/main/java/com/cloud/network/IpAddressManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,7 @@ public IPAddressVO associateIPToGuestNetwork(long ipId, long networkId, boolean
15691569
}
15701570
return _ipAddressDao.findById(ipId);
15711571
} catch (Exception e) {
1572-
s_logger.error(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
1572+
logger.error(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
15731573
throw new CloudRuntimeException(String.format("Failed to associate ip address %s to network %s", ipToAssoc, network), e);
15741574
} finally {
15751575
if (!success && releaseOnFailure) {

server/src/main/java/com/cloud/network/vpc/VpcManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3195,7 +3195,7 @@ public void doInTransactionWithoutResult(final TransactionStatus status) {
31953195
}
31963196
});
31973197
} catch (Exception e) {
3198-
s_logger.error("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
3198+
logger.error("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
31993199
throw new CloudRuntimeException("Failed to associate ip " + ipToAssoc + " to vpc " + vpc, e);
32003200
}
32013201

0 commit comments

Comments
 (0)