sureshanaparti commented on code in PR #9873:
URL: https://github.com/apache/cloudstack/pull/9873#discussion_r1900331927
##########
plugins/backup/networker/src/main/java/org/apache/cloudstack/backup/NetworkerBackupProvider.java:
##########
@@ -359,7 +359,7 @@ public boolean restoreVMFromBackup(VirtualMachine vm,
Backup backup) {
script.add("-v");
Date restoreJobStart = new Date();
- LOG.debug("Starting Restore for VM ID " + vm.getUuid() + " and SSID" +
SSID + " at " + restoreJobStart);
+ LOG.debug(String.format("Starting Restore for VM ID %s and %s at %s",
vm, SSID, restoreJobStart));
Review Comment:
```suggestion
LOG.debug(String.format("Starting Restore for VM %s and %s at %s",
vm, SSID, restoreJobStart));
```
--
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]