From 3ad9681fd16ca77e42e7b7b4c25bf1980a775df1 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 b0683d0ce15..cd2ca2b5edb 100644 --- a/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java +++ b/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java @@ -260,7 +260,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); }