In order to debug a .NET Core app which is failing on startup, I would like to write logs from within the startup.cs file. I have logging setup within the file that can be u
Just use the line below for logging in Startup.cs
Log.Information("App started.");