C # WebApi Azure Application Logging not working

I use C # webapi hosted on Azure, and I use System.Diagnostics.Trace to do some logging. In the application configuration, I activated application logging enter image description here and I'm the user on the codeTrace.TraceInformation("Something to inform")

but CSV is not generated in Azure Blob repository. The only thing that appears is when I do the deployment enter image description here

I have a system that works successfully in other applications, but I can’t understand why it will not work on this

when running on the local host, the traces are displayed in the output window

+4
source share

All Articles