Initial commit - Pingerino network monitoring application
هذا الالتزام موجود في:
20
Services/Interfaces/ILoggingService.cs
Normal file
20
Services/Interfaces/ILoggingService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Pingerino.Services.Interfaces
|
||||
{
|
||||
public interface ILoggingService
|
||||
{
|
||||
void LogInformation(string message);
|
||||
void LogWarning(string message);
|
||||
void LogError(string message, Exception exception = null);
|
||||
void LogDebug(string message);
|
||||
}
|
||||
|
||||
public enum LogLevel
|
||||
{
|
||||
Debug,
|
||||
Information,
|
||||
Warning,
|
||||
Error
|
||||
}
|
||||
}
|
المرجع في مشكلة جديدة
حظر مستخدم