16 lines
325 B
C#
16 lines
325 B
C#
using Serilog.Context;
|
|
|
|
namespace MarcoBMS.Services.Service
|
|
{
|
|
public interface ILoggingService
|
|
{
|
|
void LogInfo(string? message, params object[]? args);
|
|
void LogWarning(string? message, params object[]? args);
|
|
void LogError(Exception? ex, string? message, params object[]? args);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|