From e011ade0daf0932c9f6862407095bac158e13b0d Mon Sep 17 00:00:00 2001 From: Gabor Apati-Nagy Date: Tue, 1 Mar 2016 16:51:01 +0000 Subject: [PATCH] CA-175498: Even more logging Signed-off-by: Gabor Apati-Nagy --- XenAdmin/Wizards/PatchingWizard/PatchingWizard_PatchingPage.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_PatchingPage.cs b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_PatchingPage.cs index 6bfb5d722..9c677db3d 100644 --- a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_PatchingPage.cs +++ b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_PatchingPage.cs @@ -409,6 +409,9 @@ namespace XenAdmin.Wizards.PatchingWizard { var innerEx = exception.InnerException as Failure; errorMessage = innerEx.Message; + + if (innerEx.ErrorDescription != null && innerEx.ErrorDescription.Count > 0) + log.Error(string.Concat(innerEx.ErrorDescription.ToArray())); } labelError.Text = errorMessage ?? string.Format(Messages.PATCHING_WIZARD_ERROR, exception.Message);