mirror of https://github.com/apache/cloudstack.git
merge conflicts (in loggers)
This commit is contained in:
parent
41e7a2a689
commit
477beaffbf
|
|
@ -1569,7 +1569,7 @@ public class IpAddressManagerImpl extends ManagerBase implements IpAddressManage
|
|||
}
|
||||
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) {
|
||||
|
|
|
|||
|
|
@ -3195,7 +3195,7 @@ public class VpcManagerImpl extends ManagerBase implements VpcManager, VpcProvis
|
|||
}
|
||||
});
|
||||
} 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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue