This is an automated email from the ASF dual-hosted git repository.
weizhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new a303c7c91ae Fix build errors (#9714)
a303c7c91ae is described below
commit a303c7c91aed3787db16fafc3fb9cb4d1569f7b2
Author: João Jandre <[email protected]>
AuthorDate: Thu Sep 19 17:50:14 2024 -0300
Fix build errors (#9714)
---
.../main/java/com/cloud/hypervisor/vmware/util/VmwareHelper.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/vmware-base/src/main/java/com/cloud/hypervisor/vmware/util/VmwareHelper.java
b/vmware-base/src/main/java/com/cloud/hypervisor/vmware/util/VmwareHelper.java
index 20a1652b303..9a6457017d7 100644
---
a/vmware-base/src/main/java/com/cloud/hypervisor/vmware/util/VmwareHelper.java
+++
b/vmware-base/src/main/java/com/cloud/hypervisor/vmware/util/VmwareHelper.java
@@ -1108,7 +1108,7 @@ public class VmwareHelper {
}
if (diskControllersShareTheSameBusType(convertedRootDiskController,
convertedDataDiskController)) {
- s_logger.debug("Root and data disk controllers share the same bus
type; therefore, we will only use the controllers specified for the root
disk.");
+ LOGGER.debug("Root and data disk controllers share the same bus
type; therefore, we will only use the controllers specified for the root
disk.");
return new Pair<>(convertedRootDiskController,
convertedRootDiskController);
}
@@ -1133,10 +1133,10 @@ public class VmwareHelper {
*/
public static String getControllerBasedOnDiskType(Pair<String, String>
controllerInfo, DiskTO disk) {
if (disk.getType() == Volume.Type.ROOT || disk.getDiskSeq() == 0) {
- s_logger.debug(String.format("Choosing disk controller [%s] for
the root disk.", controllerInfo.first()));
+ LOGGER.debug(String.format("Choosing disk controller [%s] for the
root disk.", controllerInfo.first()));
return controllerInfo.first();
}
- s_logger.debug(String.format("Choosing disk controller [%s] for the
data disks.", controllerInfo.second()));
+ LOGGER.debug(String.format("Choosing disk controller [%s] for the data
disks.", controllerInfo.second()));
return controllerInfo.second();
}
}