CK.Core.SourceLogFilter.Combine C# (CSharp) Method

Combine() public method

Combines this filter with another one. Override and Minimal level filters are combined with LogFilter.Combine(LogFilter).
public Combine ( SourceLogFilter other ) : SourceLogFilter
other SourceLogFilter The other filter to combine with this one.
return SourceLogFilter
        public SourceLogFilter Combine( SourceLogFilter other )
        {
            return new SourceLogFilter( Override.Combine( other.Override ), Minimal.Combine( other.Minimal ) );
        }