Skip to content

Commit

Permalink
TMP: Print full exception stacktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrozsival committed Jul 4, 2024
1 parent a355377 commit 1be0a16
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,16 @@ private async Task ServerAsyncSslHelper(
clientStream.Socket.Shutdown(SocketShutdown.Send);
}

await serverAuthentication.WaitAsync(TestConfiguration.PassingTestTimeout);
try
{
await serverAuthentication.WaitAsync(TestConfiguration.PassingTestTimeout);
}
catch (Exception ex)
{
_log.WriteLine("Server exception : " + ex);
throw;
}

_logVerbose.WriteLine("ServerAsyncAuthenticateTest.serverAuthentication complete.");

_log.WriteLine(
Expand Down

0 comments on commit 1be0a16

Please sign in to comment.