- fix: update resolver startup

This commit is contained in:
2025-10-04 19:59:23 +03:00
parent a09ace0d39
commit fd06729035

View File

@@ -36,8 +36,9 @@ public partial class MainWindow : Window
Console.WriteLine(messageOut); Console.WriteLine(messageOut);
LogStr += messageOut + "\n"; LogStr += messageOut + "\n";
}; };
LogStandalone.Log("Starting up");
if (!Design.IsDesignMode) if (!Design.IsDesignMode)
Task.Run(()=> Start()); _ = Start();
else else
LogStandalone.Log("Debug information", 51); LogStandalone.Log("Debug information", 51);
} }