MES-ETL/ConsoleApp2/Services/Loggers/ITaskMonitorLogger.cs

12 lines
283 B
C#
Raw Normal View History

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