From 8e5406f5ba0a6766e2cbc540f533196afaf46c75 Mon Sep 17 00:00:00 2001 From: Edison Su Date: Mon, 12 Aug 2013 11:01:41 -0700 Subject: [PATCH] CLOUDSTACK-4253: change the log message if copy template from secondary storage to primary storage failed --- .../src/com/cloud/storage/resource/VmwareStorageProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java b/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java index a2249f070a8..8f8e0c75f11 100644 --- a/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java +++ b/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java @@ -233,7 +233,7 @@ public class VmwareStorageProcessor implements StorageProcessor { hostService.invalidateServiceContext(context); } - String msg = "Unable to execute PrimaryStorageDownloadCommand due to exception"; + String msg = "Unable to copy template to primary storage due to exception:" + e.toString(); s_logger.error(msg, e); return new CopyCmdAnswer(msg); }