I was told to ask this here.
I would like Serilog to tell me which class the logging is being done. This is my code to set the serilog:
Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Console()
.Enrich.FromLogContext()
.CreateLogger();