From 6a200dbb643c7cc0690ef9f2c5eb9a7181784d3a Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 16 Jan 2024 04:24:14 +0100 Subject: [PATCH] TestApp fix --- TestApp/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TestApp/Program.cs b/TestApp/Program.cs index e7cb533..57bc1a4 100644 --- a/TestApp/Program.cs +++ b/TestApp/Program.cs @@ -7,6 +7,8 @@ public class TestApp { public static void Main(string[] args) { - new CS2GSI.CS2GSI(new Logger(LogLevel.Information)); + CS2GSI.CS2GSI gsi = new (new Logger(LogLevel.Debug)); + while(gsi.IsRunning) + Thread.Sleep(10); } } \ No newline at end of file