weizhouapache commented on code in PR #8371:
URL: https://github.com/apache/cloudstack/pull/8371#discussion_r1490839055


##########
engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java:
##########
@@ -2435,7 +2438,7 @@ protected void removeNic(final VirtualMachineProfile vm, 
final NicVO nic) {
             for (final NetworkElement element : networkElements) {
                 if (providersToImplement.contains(element.getProvider())) {
                     if (s_logger.isDebugEnabled()) {
-                        s_logger.debug("Asking " + element.getName() + " to 
release " + nic);
+                        s_logger.debug(String.format("Asking %s to release %s, 
according to %s", element.getName(), nic, nic.getReservationStrategy()));

Review Comment:
   @DaanHoogland  like this ?
   
   ```suggestion
                           s_logger.debug(String.format("Asking %s to release 
%s, according to the reservation strategy %s", element.getName(), nic, 
nic.getReservationStrategy()));
   ```
   



-- 
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]

Reply via email to