diff --git a/client/DebugLog.cs b/client/DebugLog.cs index 8fb4733..6cb157f 100644 --- a/client/DebugLog.cs +++ b/client/DebugLog.cs @@ -236,6 +236,10 @@ public static async Task LogEventAsync(string message, Region region = Region.Mi } logSemaphore.Release(); } + + if (Settings.Headless) + Console.WriteLine(debugString); + LogText += debugString; } @@ -278,6 +282,10 @@ public static void LogEvent(string message, Region region = Region.Misc, EventTy } logSemaphore.Release(); } + + if (Settings.Headless) + Console.WriteLine(debugString); + LogText += debugString; } diff --git a/client/Frontend/App.xaml b/client/Frontend/App.xaml index fa9fc26..2184258 100644 --- a/client/Frontend/App.xaml +++ b/client/Frontend/App.xaml @@ -2,7 +2,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:specify_client" - StartupUri="\Frontend\Landing.xaml" Startup="Application_Startup"> + Startup="Application_Startup">