Skip to content

Commit cfafcae

Browse files
committed
log name change after merge forward
1 parent 7931645 commit cfafcae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/apache/cloudstack/vm/UnmanagedVMsManagerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,7 +2071,7 @@ private List<StoragePoolVO> findInstanceConversionStoragePoolsInCluster(
20712071
DiskOfferingVO diskOffering = diskOfferingDao.findById(diskOfferingId);
20722072
if (diskOffering == null) {
20732073
String msg = String.format("Cannot find disk offering with ID %s", diskOfferingId);
2074-
LOGGER.error(msg);
2074+
logger.error(msg);
20752075
throw new CloudRuntimeException(msg);
20762076
}
20772077
diskOfferingTags.add(diskOffering.getTags());
@@ -2107,7 +2107,7 @@ private List<StoragePoolVO> getPoolsWithMatchingTags(List<StoragePoolVO> pools,
21072107
}
21082108
if (!tagsMatched) {
21092109
String msg = String.format("Cannot find suitable storage pools for the conversion with disk offering tags %s", tags);
2110-
LOGGER.error(msg);
2110+
logger.error(msg);
21112111
throw new CloudRuntimeException(msg);
21122112
}
21132113
}

0 commit comments

Comments
 (0)