ok, we are using Serilog in our web app and having it post to SEQ. (The site is a mix of classic ASP and .NET, but we only have Serilog calls in .NET)
// create the logger
Log.Logger = new LoggerConfiguration()
.MinimumLevel.ControlledBy(_levelSwitch)
.WriteTo.Seq(seqIp)
.CreateLogger();
When I have MinimumLoggingLevel configured to be 'Information', 'Debug', or 'Verbose', every single GET or POST is being thrown into the logs, hundreds of them...
WITHOUT even calling log.Information..., log.Debug..., or log.Verbose. It just throws ever piece of info possible out to SEQ.
Here's some of the info being thrown into SEQ. It's just 'info' nothing I explicitly called to log...
Is this normal functionality?
(I have it set to Warning for now so none of this superfluous info clogs the UI)