15 lines
405 B
C#
15 lines
405 B
C#
using System;
|
|
|
|
namespace GeneralApi.Core.Services
|
|
{
|
|
public interface ILogger
|
|
{
|
|
void LogDebug(String msg);
|
|
void LogDebug(string msg, params object[] param);
|
|
void LogWarning(String msg, Exception ex);
|
|
void LogWarning(String msg);
|
|
void LogError(Exception ex);
|
|
void LogError(string msg);
|
|
void LogError(string msg, params object[] param);
|
|
}
|
|
} |