MES-ETL/MesETL.App/Services/Loggers/ITaskMonitorLogger.cs

12 lines
282 B
C#
Raw Normal View History

namespace MesETL.App.Services.Loggers;
2024-01-29 09:29:16 +08:00
public interface ITaskMonitorLogger
{
public enum LogLevel
{
Info,
Debug,
Progress,
}
void LogStatus(string name, IReadOnlyDictionary<string, string> properties, LogLevel logLevel = LogLevel.Info);
}