public void Write(WriteContext context) { if (this.WriteEnabled != null && !this.WriteEnabled(context)) { return; } this._writes.Enqueue(context); }
public static bool EnableWithTypeName <T>(WriteContext context) { return(context.LoggerName.Equals(typeof(T).FullName)); }