From 90d0ad969d330ce3cad48a4ac847d2204c1ed640 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Fri, 5 Sep 2014 08:36:13 -0700 Subject: [PATCH] Adding some diagnostics to the Win32Exception Kestrel variation seems to be failing for some reason. Adding some diagnostics. --- test/E2ETests/DeploymentUtility.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/E2ETests/DeploymentUtility.cs b/test/E2ETests/DeploymentUtility.cs index 59cf8b3a79..6cc82e10d9 100644 --- a/test/E2ETests/DeploymentUtility.cs +++ b/test/E2ETests/DeploymentUtility.cs @@ -167,9 +167,9 @@ namespace E2ETests { Console.WriteLine("Started {0}. Process Id : {1}", hostProcess.MainModule.FileName, hostProcess.Id); } - catch (Win32Exception) + catch (Win32Exception win32Exception) { - Console.WriteLine("Cannot access 64 bit modules from a 32 bit process"); + Console.WriteLine("Cannot access 64 bit modules from a 32 bit process. Failed with following message : {0}", win32Exception.Message); } WaitTillDbCreated(identityDbName);