Adding some diagnostics to the Win32Exception
Kestrel variation seems to be failing for some reason. Adding some diagnostics.
This commit is contained in:
parent
bb08bdd1e8
commit
90d0ad969d
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue