Skip to content

Commit c6b55bd

Browse files
fix log message
1 parent d12df39 commit c6b55bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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
@@ -1050,7 +1050,7 @@ public void doInTransactionWithoutResult(TransactionStatus status) {
10501050
Account owner = _accountMgr.getAccount(addr.getAllocatedToAccountId());
10511051
final IPAddressVO userIp = _ipAddressDao.lockRow(addr.getId(), true);
10521052
if (userIp == null) {
1053-
s_logger.error(String.format("Failed to acquire row lock to mark public IP as allocated with ID [%s] address [%s]", addr.getId(), addr.getAddress()));
1053+
s_logger.error(String.format("Failed to acquire row lock to mark public IP as allocated with ID [%s] and address [%s]", addr.getId(), addr.getAddress()));
10541054
return;
10551055
}
10561056

0 commit comments

Comments
 (0)