DaanHoogland commented on code in PR #8371:
URL: https://github.com/apache/cloudstack/pull/8371#discussion_r1490835458
##########
engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java:
##########
@@ -2329,6 +2329,9 @@ public Pair<Network, NicProfile> doInTransaction(final
TransactionStatus status)
final NicProfile profile = new NicProfile(nic,
network, nic.getBroadcastUri(), nic.getIsolationUri(), null, _networkModel
.isSecurityGroupSupportedInNetwork(network),
_networkModel.getNetworkTag(vmProfile.getHypervisorType(), network));
if (guru.release(profile, vmProfile,
nic.getReservationId())) {
+ if (s_logger.isDebugEnabled()) {
+ s_logger.debug(String.format("released nic %s
on %s according to %s by guru %s, now updating record.", nic, profile,
vmProfile, guru));
Review Comment:
```suggestion
s_logger.debug(String.format("The nic %s on
%s was released according to %s by guru %s, now updating record.", nic,
profile, vmProfile, guru));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]