Description
This bunch of public APIs first parameter is LoggerFilterOptions
instead of the ILoggingBuilder
. And the return type is LoggerFilterOptions
instead of ILoggingBuilder
as well.
Suggestion
- /// <param name="builder">The <see cref="ILoggingBuilder"/> to add the filter to.</param>
+ /// <param name="builder">The <see cref="LoggerFilterOptions"/> to add the filter to.</param>
- /// <returns>The <see cref="ILoggingBuilder"/> so that additional calls can be chained.</returns>
+ /// <returns>The <see cref="LoggerFilterOptions"/> so that additional calls can be chained.</returns>