You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameters that are an interface can be provided either by specifying the qualified type name of an implementing class that has a default constructor, or referencing a static property/field (see #71 , #73 ).
The text was updated successfully, but these errors were encountered:
tsimbalar
changed the title
Add more support for some configuration methods through key-value settings
Add more support for some configuration methods
Jul 20, 2018
This is the equivalent to serilog/serilog#1194
There is no reason not to support the following methods in key-value settings provider :
WriteTo.Sink(ILogEventSink logEventSink, LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum, LoggingLevelSwitch levelSwitch = null)
AuditTo.Sink(ILogEventSink logEventSink, LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum, LoggingLevelSwitch levelSwitch = null)
Enrich.With(params ILogEventEnricher[] enrichers)
(with surrogateEnrich.With(ILogEventEnricher enricher)
)Filter.With(params ILogEventFilter[] filters)
(with surrogateEnrich.With(ILogEventFilter filter)
)The parameters that are an
interface
can be provided either by specifying the qualified type name of an implementing class that has a default constructor, or referencing a static property/field (see #71 , #73 ).The text was updated successfully, but these errors were encountered: