Hello experts,
I have followed this article to push the plugin logs to App Insights
https://learn.microsoft.com/en-us/power-apps/developer/data-platform/application-insights-ilogger
However, it's not working.
I have checked if the logger is enabled for all log levels: INFORMATION, WARNING, ERROR, ...
But all the log levels are disabled.
foreach (var level in logLevels)
{
var enabled = logger.IsEnabled(level);
tracingService.Trace($"LOGGER LEVEL {level} ENABLED = {enabled}");
}
Is there any way that we can enable logger for all log levels?
Thanks for your support,
Kim Anh