Add EventArgs

This commit is contained in:
2024-01-15 23:52:30 +01:00
parent bc711d65e6
commit 1c161cde55
3 changed files with 30 additions and 14 deletions

View File

@ -1,11 +1,12 @@
// See https://aka.ms/new-console-template for more information
using CS2GSI.TestApp;
using Microsoft.Extensions.Logging;
public class TestApp
{
public static void Main(string[] args)
{
new CS2GSI.CS2GSI(new Logger());
new CS2GSI.CS2GSI(new Logger(LogLevel.Information));
}
}