2024-02-02 17:14:41 +08:00
|
|
|
|
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);
|
|
|
|
|
}
|