21 أسطر
405 B
C#
21 أسطر
405 B
C#
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
|
|
}
|
|
}
|