Compare commits

..

No commits in common. "6109080bfcfbc4edf765c6afc44ebe16e1c94e92" and "2e0e8de7212c7800d31f113d8e124d74b2911196" have entirely different histories.

2 changed files with 15 additions and 15 deletions

View File

@ -0,0 +1,15 @@
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

@ -1,15 +0,0 @@
{
"Serilog": {
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "log.txt"
}
}
],
"MinimumLevel": {
"Default": "Debug"
}
}
}