From 86acb09782e46362982477b9712b3bc4f8f50b70 Mon Sep 17 00:00:00 2001 From: Nick Genovese Date: Thu, 24 Aug 2023 12:36:21 -0400 Subject: [PATCH] fix: StreamDebugging in default constructor - creates a StreamDebugging class with the default s+ key - this shouldn't matter since in a simpl windows env you can't use console commands anyhow --- Pepperdash Core/Pepperdash Core/Comm/GenericTcpIpClient.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pepperdash Core/Pepperdash Core/Comm/GenericTcpIpClient.cs b/Pepperdash Core/Pepperdash Core/Comm/GenericTcpIpClient.cs index 8cfaad2..024221f 100644 --- a/Pepperdash Core/Pepperdash Core/Comm/GenericTcpIpClient.cs +++ b/Pepperdash Core/Pepperdash Core/Comm/GenericTcpIpClient.cs @@ -220,7 +220,8 @@ namespace PepperDash.Core /// public GenericTcpIpClient() : base(SplusKey) - { + { + StreamDebugging = new CommunicationStreamDebugging(SplusKey); CrestronEnvironment.ProgramStatusEventHandler += new ProgramStatusEventHandler(CrestronEnvironment_ProgramStatusEventHandler); AutoReconnectIntervalMs = 5000; BufferSize = 2000;