update minio

This commit is contained in:
2022-05-07 22:56:22 +08:00
parent 55ea40b757
commit 6fdb3da059
4 changed files with 35 additions and 17 deletions
+15
View File
@@ -0,0 +1,15 @@
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
};
}