Updated Branches: refs/heads/4.2 ab7a9339b -> 8e5406f5b
CLOUDSTACK-4253: change the log message if copy template from secondary storage to primary storage failed Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/8e5406f5 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8e5406f5 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8e5406f5 Branch: refs/heads/4.2 Commit: 8e5406f5ba0a6766e2cbc540f533196afaf46c75 Parents: ab7a933 Author: Edison Su <[email protected]> Authored: Mon Aug 12 11:01:41 2013 -0700 Committer: Edison Su <[email protected]> Committed: Mon Aug 12 11:01:56 2013 -0700 ---------------------------------------------------------------------- .../src/com/cloud/storage/resource/VmwareStorageProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8e5406f5/plugins/hypervisors/vmware/src/com/cloud/storage/resource/VmwareStorageProcessor.java ---------------------------------------------------------------------- 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 a2249f0..8f8e0c7 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); }
