feat: add log debug window

This commit is contained in:
goat 2020-01-13 22:03:48 +09:00
parent fc5a8bc38e
commit 84e98e0315
5 changed files with 226 additions and 63 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.IO;
using Dalamud.Interface;
using EasyHook;
using Serilog;
using Serilog.Core;
@ -42,6 +43,7 @@ namespace Dalamud {
return new LoggerConfiguration()
.WriteTo.Async(a => a.File(logPath))
.WriteTo.EventSink()
#if DEBUG
.MinimumLevel.Verbose()
#else