sureshanaparti commented on code in PR #9873:
URL: https://github.com/apache/cloudstack/pull/9873#discussion_r1900096060
##########
server/src/main/java/org/apache/cloudstack/backup/BackupManagerImpl.java:
##########
@@ -191,7 +191,7 @@ public List<BackupOffering>
listBackupProviderOfferings(final Long zoneId) {
throw new PermissionDeniedException("Parameter external can only
be specified by a Root Admin, permission denied");
}
final BackupProvider backupProvider = getBackupProvider(zoneId);
- logger.debug("Listing external backup offerings for the backup
provider configured for zone ID " + zoneId);
+ logger.debug("Listing external backup offerings for the backup
provider configured for zone ID {}", dataCenterDao.findById(zoneId));
Review Comment:
```suggestion
logger.debug("Listing external backup offerings for the backup
provider configured for zone {}", dataCenterDao.findById(zoneId));
```
--
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]