Make as must of the log viewer internal as possible

This commit is contained in:
Bjarke Berg
2019-01-22 10:36:44 +01:00
parent c8daf1d8db
commit 70315d4a5f
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ using Serilog.Events;
namespace Umbraco.Core.Logging.Viewer
{
public class CountingFilter : ILogFilter
internal class CountingFilter : ILogFilter
{
public CountingFilter()
{

View File

@@ -2,7 +2,7 @@
namespace Umbraco.Core.Logging.Viewer
{
public class ErrorCounterFilter : ILogFilter
internal class ErrorCounterFilter : ILogFilter
{
public int Count { get; private set; }

View File

@@ -6,7 +6,7 @@ using Serilog.Filters.Expressions;
namespace Umbraco.Core.Logging.Viewer
{
//Log Expression Filters (pass in filter exp string)
public class ExpressionFilter : ILogFilter
internal class ExpressionFilter : ILogFilter
{
private readonly Func<LogEvent, bool> _filter;
private const string ExpressionOperators = "()+=*<>%-";

View File

@@ -7,7 +7,7 @@ using Serilog.Formatting.Compact.Reader;
namespace Umbraco.Core.Logging.Viewer
{
public class JsonLogViewer : LogViewerSourceBase
internal class JsonLogViewer : LogViewerSourceBase
{
private readonly string _logsPath;

View File

@@ -3,7 +3,7 @@ using Serilog.Events;
namespace Umbraco.Core.Logging.Viewer
{
public class MessageTemplateFilter : ILogFilter
internal class MessageTemplateFilter : ILogFilter
{
public readonly Dictionary<string, int> Counts = new Dictionary<string, int>();