-
asp core 3.1
```xml
```
```cs
Log.Logger = new LoggerConfiguration()
.Filter.ByIncludingOnly(Matching.FromSource("Foo.Bar"))
.WriteTo.File(
new CompactJsonFormatter(…
-
Not a bug but a request for an addition to the Serilog wiki.
I have created an enricher for Serilog that has the capability to mask sensitive data from log event properties: [Serilog.Enrichers.Sens…
-
Do you know what it would take to add this as a serilog sink so I can update my logging template to include the correlation id without having to modify every log statement to include the id?
-
**Is your feature request related to a problem? Please describe.**
what a coworker of mine is requesting is omitting stacktraces of certain exception types because logfiles get too large / cluttered.…
-
Hello,
I am using Serilog to log events to a mssqlserver table that has a different column's name than the property's.
How can I map the following property to the column "machineName" defined in…
-
I am trying to set my serilog up, so that when logging occurs only specific logs will be written to a log file. I imagine that this could work logging to different sinks as well, which I intend to try…
-
Provide application component / role enricher that will automatically add information concerning the component and the instance name.
- Component name should be defined when configuring the enriche…
-
I am currently using SerilogWeb.Classic v5.0.56 in a legacy webforms website.
After I decided to enable SelfLog, I found that adding log entries from the `Application_Start` in `Global.asax` while en…
-
**Is your feature request related to a problem? Please describe.**
Serilog allows you to write [enrichers](https://github.com/serilog/serilog/wiki/Enrichment) that will enrich every entry without hav…
-
I am using Serilog as a logging library for my bot, and I have had to write a custom enricher (a way of adding properties to a log line) to override thread names with a custom name because Discord.Net…