16 lines
666 B
C#
16 lines
666 B
C#
using Oqtane.Models;
|
|
using Oqtane.Shared;
|
|
using System;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface ILogManager
|
|
{
|
|
void Log(LogLevel Level, object Class, LogFunction Function, string Message, params object[] Args);
|
|
void Log(LogLevel Level, object Class, LogFunction Function, Exception Exception, string Message, params object[] Args);
|
|
void Log(int SiteId, LogLevel Level, object Class, LogFunction Function, string Message, params object[] Args);
|
|
void Log(int SiteId, LogLevel Level, object Class, LogFunction Function, Exception Exception, string Message, params object[] Args);
|
|
void Log(Log Log);
|
|
}
|
|
}
|