serilog-settings-configuration
serilog-settings-configuration copied to clipboard
A Serilog configuration provider that reads from Microsoft.Extensions.Configuration
When reading configuration for sinks that include decimal-point numbers, the configuration reads the value as a string and then parses it using whatever number format the current culture supports. Example...
**Description** ReadFrom.Configuration is not able to use configuration parameters from the appsettings.json file. It does not write the expected format on the console, it does not generate the expected log...
Use value from `Serilog:MinimumLevel:Default` if value from `Serilog:MinimumLevel` is an empty string. Fixes #332
Support collections and arrays as constructor arguments. Closes #314
Hi, Any suggestions on how to specifiy ResourceAttributes when configuring the sink via appsettings.json? Specifying Endpoint and Protocol in appsettings.json works fine, but I can't get the syntax for specifying...
I create a common trace library for other solutions. But I can not find a way to configure the path dynamicly. I tried to create a enrich to add a...
I've found following bug: The DllScanningAssemlyFinder is scanning the Application's directory for dlls containing .serilog in its name. Later on the ConfigurationReader attempts to load the results with the Assembly.Load...
Add a new Playground Project to Test any Future Json Schema changes before sending the changes to SchemaStore. See: https://github.com/SchemaStore/schemastore/pull/3414 Close: #327
Hi Serilog Team! I noticed both ConfigurationReader and IConfigurationReader have internal access, which means as developer I cannot inherith or decorate it. I have use case where possiblity of decorating...