Azure – Why is ILogger.LogError working but not ILogger.LogInformation?
Why is it that when I inject ILogger<MyClassName> and call Logger.LogInformation I don't see that in Application Insights, but when I call Logger.LogError I do? Here is my code public async ValueTask DeleteMessageAsync(string chatId, int messageId) { Logger.LogInformation( "Deleting message:…