From e8a54782e4fddd6eed57c53eb4d901fcac53e479 Mon Sep 17 00:00:00 2001 From: Eric Fontana Date: Wed, 8 Apr 2015 08:49:55 -0400 Subject: [PATCH] Remove extra Start call for standalone operation. --- TimberWinR/Inputs/UdpInputListener.cs | 7 ++++--- TimberWinR/Manager.cs | 3 +-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TimberWinR/Inputs/UdpInputListener.cs b/TimberWinR/Inputs/UdpInputListener.cs index bb74075..020cc23 100644 --- a/TimberWinR/Inputs/UdpInputListener.cs +++ b/TimberWinR/Inputs/UdpInputListener.cs @@ -38,8 +38,7 @@ namespace TimberWinR.Inputs { _port = port; - LogManager.GetCurrentClassLogger().Info("Udp Input on Port {0} Ready", _port); - + _receivedMessages = 0; _listenThreadV6 = new Thread(StartListener); @@ -74,7 +73,9 @@ namespace TimberWinR.Inputs dualModeSocket.Bind(groupV6); _udpListenerV6 = new UdpClient(); - _udpListenerV6.Client = dualModeSocket; + _udpListenerV6.Client = dualModeSocket; + + LogManager.GetCurrentClassLogger().Info("Udp Input on Port {0} Ready", groupV6); string lastMessage = ""; try diff --git a/TimberWinR/Manager.cs b/TimberWinR/Manager.cs index 3417691..ee15bdb 100644 --- a/TimberWinR/Manager.cs +++ b/TimberWinR/Manager.cs @@ -152,8 +152,7 @@ namespace TimberWinR if (processConfiguration) { - ProcessConfiguration(cancelToken, Config); - Start(cancelToken); + ProcessConfiguration(cancelToken, Config); } }