structured logging
This commit is contained in:
13
Oqtane.Server/Infrastructure/ILogManager.cs
Normal file
13
Oqtane.Server/Infrastructure/ILogManager.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Oqtane.Models;
|
||||
using Oqtane.Shared;
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface ILogManager
|
||||
{
|
||||
void AddLog(string Category, LogLevel Level, string Message, params object[] Args);
|
||||
void AddLog(string Category, LogLevel Level, Exception Exception, string Message, params object[] Args);
|
||||
void AddLog(Log Log);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user