mirror of
https://github.com/eliasstepanik/AutoProxy.git
synced 2026-01-10 05:08:33 +00:00
15 lines
371 B
C#
15 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace DDNSUpdater.Logging;
|
|
|
|
public sealed class SpecterConsoleLoggerConfiguration
|
|
{
|
|
public int EventId { get; set; }
|
|
|
|
public Dictionary<LogLevel, ConsoleColor> LogLevelToColorMap { get; set; } = new()
|
|
{
|
|
[LogLevel.Information] = ConsoleColor.DarkGreen
|
|
};
|
|
} |