Skip to content

Commit

Permalink
log name change after merge forward
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanHoogland committed Jan 3, 2025
1 parent 7931645 commit cfafcae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2071,7 +2071,7 @@ private List<StoragePoolVO> findInstanceConversionStoragePoolsInCluster(
DiskOfferingVO diskOffering = diskOfferingDao.findById(diskOfferingId);
if (diskOffering == null) {
String msg = String.format("Cannot find disk offering with ID %s", diskOfferingId);
LOGGER.error(msg);
logger.error(msg);
throw new CloudRuntimeException(msg);
}
diskOfferingTags.add(diskOffering.getTags());
Expand Down Expand Up @@ -2107,7 +2107,7 @@ private List<StoragePoolVO> getPoolsWithMatchingTags(List<StoragePoolVO> pools,
}
if (!tagsMatched) {
String msg = String.format("Cannot find suitable storage pools for the conversion with disk offering tags %s", tags);
LOGGER.error(msg);
logger.error(msg);
throw new CloudRuntimeException(msg);
}
}
Expand Down

0 comments on commit cfafcae

Please sign in to comment.