ПИбд-23 Тихоненков А.Е. Лабораторная №7 #15

Closed
YourDax wants to merge 4 commits from Lab7 into Lab6
2 changed files with 15 additions and 15 deletions
Showing only changes of commit 82ea3c5f02 - Show all commits

View File

@ -1,15 +0,0 @@
using Serilog;
namespace AntiAircraftGun
{
public static class Logger
{
public static void ConfigureLogger()
{
Log.Logger = new LoggerConfiguration()
.WriteTo.File("log.txt")
.MinimumLevel.Debug()
.CreateLogger();
}
}
}

View File

@ -0,0 +1,15 @@
{
"Serilog": {
Review

Настройка логгера не полная

Настройка логгера не полная
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "log.txt"
}
}
],
"MinimumLevel": {
"Default": "Debug"
}
}
}