I'm running a Netcore Web API through visual studio and after 40-60 requests it becomes unresponsive. Requests that would typically take under a second start taking over a minute.
I disabled the console logger and the API never slows down no matter how many requests I send to it.
Here is how I add the console logger:
loggerFactory.AddConsole( Configuration.GetSection( "Logging" ) );