15 lines
334 B
C#
15 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace SimApi.Logger;
|
|
|
|
public class SimApiLoggerConfiguration
|
|
{
|
|
public int EventId { get; set; }
|
|
|
|
public Dictionary<LogLevel, ConsoleColor> LogLevels { get; set; } = new()
|
|
{
|
|
[LogLevel.Information] = ConsoleColor.Green
|
|
};
|
|
} |