Sets trace’s switch. It is output on the console.
Syntax
- C#: None
- Ruby: setTraceOutPut(val)
- Python: setTraceOutPut(val)
Parameters
- val: output switch
true: output on
false: output off
Return
None
Examples
C#
None
Ruby
1 2 |
cltComm = ClientTcpCommunication.new cltComm .setTraceOutPut(true) #output on |
Python
1 2 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() clt_comm.setTraceOutPut(true) #output on |