I've an ASP.NET Core Application (.net Framework) and that references my other .net Framework dlls. I've configured logging in my ASP.NET Application using "Microsoft.Extensions.Logging.AzureAppServices" and injecting ILogger to controllers. All that works fine. all my logs are written to azure application logs in Azure.
In my .net framework dll, i've Trace.TraceError, TraceWarning statements. And I would like to include them in azure application log. but I cannot find any way to do it.
Looking forward for some help.
Trace
class or theTraceSource
one? – Henk Mollema