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
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
Uh oh!
There was an error while loading. Please reload this page.
Currently, at https://github.com/aspnet/Logging/blob/dev/src/Microsoft.Extensions.Logging.Filter/Internal/FilterLogger.cs#L27 only provided filter is respected. But this functionality will likely be used for integration with existing logging frameworks, which may have their own filtering system. Why not respect it at least like this:
public bool IsEnabled(LogLevel logLevel) { return _filter(logLevel) && _innerLogger.IsEnabled(logLevel); }
In other words, this filtering decorator should augment inner logger's filtering, not replace it.
The text was updated successfully, but these errors were encountered: