I got a C# azure function app and it uses an ILogger
to log to app insight.
Until recently, the function app was implemented using .NET6 and everything was fine. I then converted it to use .NET 8 and its now dotnet-isolated.
Ever since the change, it seems like I’m losing log entries whenever I’m logging inside loops.. I do see all logs which are not inside loops, but it seems like after the conversion, it’s like it can’t handle fast logging to app insight? What can be done to solve it?