Skip to content

Commit

Permalink
No colors in console
Browse files Browse the repository at this point in the history
Was messing up the console reading logic
  • Loading branch information
Noggog committed Nov 4, 2024
1 parent 3d0fa31 commit 643c76f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Synthesis.Bethesda.CLI/Log.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Serilog;
using Serilog.Sinks.SystemConsole.Themes;

namespace Synthesis.Bethesda.CLI;

Expand All @@ -9,7 +10,7 @@ public static class Log
static Log()
{
Serilog.Log.Logger = GetLoggerConfig()
.WriteTo.Console()
.WriteTo.Console(theme: ConsoleTheme.None)
.CreateLogger();

Logger = Serilog.Log.Logger;
Expand Down

0 comments on commit 643c76f

Please sign in to comment.