completed background job scheduler
This commit is contained in:
13
Oqtane.Server/Infrastructure/Interfaces/ILogManager.cs
Normal file
13
Oqtane.Server/Infrastructure/Interfaces/ILogManager.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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(Log Log);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user