namespace MesETL.App.Services.Loggers; public interface ITaskMonitorLogger { public enum LogLevel { Info, Debug, Progress, } void LogStatus(string name, IReadOnlyDictionary properties, LogLevel logLevel = LogLevel.Info); }