aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-04-10 15:06:42 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-04-10 15:06:42 +0300
commitb4682a3abfe299c19b24752b2fb1ce2477611ec3 (patch)
tree1d7c87eb5c3eba0d4bf7103fa8717ba62faaccc2 /Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs
parentd03741164872fc4d849407ed877b6ea00220cc67 (diff)
downloadTango-b4682a3abfe299c19b24752b2fb1ce2477611ec3.tar.gz
Tango-b4682a3abfe299c19b24752b2fb1ce2477611ec3.zip
Implemented FSE/PPC Logs.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs
index 3a43e71f0..4837fd100 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs
@@ -457,11 +457,12 @@ namespace Tango.FSE.UI.Connection
MachineOperator.RequestTimeout = TimeSpan.FromSeconds(5);
MachineOperator.ContinuousRequestTimeout = TimeSpan.FromSeconds(5);
- if (MachineOperator is ExternalBridgeTcpClient)
+ if (ConnectionType.IsRemote())
{
- ExternalBridgeTcpClient tcpClient = MachineOperator as ExternalBridgeTcpClient;
+ ExternalBridgeTcpClient tcpClient = MachineOperator.As<ExternalBridgeTcpClient>();
tcpClient.EnableApplicationLogs = true;
tcpClient.InjectApplicationLogsToDefaultLogManager = false;
+ tcpClient.LogEmbeddedDebuggingToFile = false;
}
}