TestApp fix

This commit is contained in:
glax 2024-01-16 04:24:14 +01:00
parent bbfa9989ec
commit 6a200dbb64

View File

@ -7,6 +7,8 @@ public class TestApp
{ {
public static void Main(string[] args) 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);
} }
} }