I'm a bit uncertain about this, they do have a reference to Serilog, but the vast majority of logging already resides in Core, so I opted to move it to Umbraco.Cms.Core
13 lines
371 B
C#
13 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Cms.Core.Logging.Viewer
|
|
{
|
|
public interface ILogViewerConfig
|
|
{
|
|
IReadOnlyList<SavedLogSearch> GetSavedSearches();
|
|
IReadOnlyList<SavedLogSearch> AddSavedSearch(string name, string query);
|
|
IReadOnlyList<SavedLogSearch> DeleteSavedSearch(string name, string query);
|
|
}
|
|
}
|