namespace NModbus { /// /// Simple logging target. Designed to be easily integrated into other logging frameworks. /// public interface IModbusLogger { /// /// Conditionally log a message /// /// /// void Log(LoggingLevel level, string message); /// /// True if this level should be logged, false otherwise. /// /// /// bool ShouldLog(LoggingLevel level); } }