removed other projects
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System.Drawing;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Serilog.Sinks.LogView.Core.Logging;
|
||||
|
||||
namespace LogViewer.Core;
|
||||
|
||||
public class DataStoreLoggerConfiguration
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public EventId EventId { get; set; }
|
||||
|
||||
public Dictionary<LogLevel, LogEntryColor> Colors { get; } = new()
|
||||
{
|
||||
[LogLevel.Trace] = new() { Foreground = Color.DarkGray },
|
||||
[LogLevel.Debug] = new() { Foreground = Color.Gray },
|
||||
[LogLevel.Information] = new(),
|
||||
[LogLevel.Warning] = new() { Foreground = Color.Orange},
|
||||
[LogLevel.Error] = new() { Foreground = Color.White, Background = Color.OrangeRed },
|
||||
[LogLevel.Critical] = new() { Foreground=Color.White, Background = Color.Red },
|
||||
[LogLevel.None] = new(),
|
||||
};
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user