Reimplemented using MVVMCross (SearchResultWindow & DownloadWindow WIP)

This commit is contained in:
Jeddunk 2020-12-25 16:49:51 +01:00
parent c7308cfc29
commit aada82693d
33 changed files with 1609 additions and 1758 deletions

View file

@ -0,0 +1,14 @@
using Serilog;
using Serilog.Core;
namespace auto_creamapi.Utils
{
public class MyLogger
{
public static readonly Logger Log = new LoggerConfiguration()
.MinimumLevel.Debug()
.WriteTo.Console()
.WriteTo.File("autocreamapi.log", rollingInterval: RollingInterval.Day)
.CreateLogger();
}
}