Adding some diagnostics to the Win32Exception

Kestrel variation seems to be failing for some reason. Adding some diagnostics.
This commit is contained in:
Praburaj 2014-09-05 08:36:13 -07:00
parent bb08bdd1e8
commit 90d0ad969d
1 changed files with 2 additions and 2 deletions

View File

@ -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);