We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac1267 commit 666cadeCopy full SHA for 666cade
src/dds.net-server.app.console/Program.cs
@@ -9,9 +9,7 @@ namespace DDS.Net.Server.ConsoleApp
9
{
10
internal class Program
11
12
- private static SplitLogger logger =
13
- new(new FileLogger(AppConstants.LOG_FILENAME, LogLevel.Information),
14
- new ConsoleLogger(LogLevel.Information));
+ private static ConsoleLogger logger = new(LogLevel.Information);
15
16
private static DdsServer server = null!;
17
@@ -43,7 +41,6 @@ static void Main(string[] args)
43
41
ConsoleHelpers.WaitForKey("Press ESC to exit.", ConsoleKey.Escape);
44
42
45
server?.Stop();
46
- logger?.Dispose();
47
}
48
49
0 commit comments