We have a kestrel based production load balancer edge hosted on large site.
When malicious clients open many https connections based on invalid host names, no cert is available and we async log this failure to W3C log file.
As the callback method is not async, we end up blocking most of the thread pool threads waiting for async logging to be scheduled and starvation occurs.
Surely it is easy enough to make this callback async?

