public bool IsIncluded()

in src/Serilog.Sinks.AzureDataExplorer/Durable/ControlledLevelSwitch.cs [43:49]


        public bool IsIncluded(LogEvent evt)
        {
            // Concurrent, but not synchronized.
            var controlledSwitch = m_controlledSwitch;
            return controlledSwitch == null ||
                (int)controlledSwitch.MinimumLevel <= (int)evt.Level;
        }