E_TraceLevel

Priority level for logging the error messages and log messages.

Namespace: Tc3_Collections
Library: Tc3_Collections (Tc3_Collections.compiled-library)

Syntax

{attribute 'qualified_only'}
{attribute 'strict'}
TYPE E_TraceLevel :
(
    None    := 0,// don't trace any message 
    Verbose := 16#00000001,// bit 0 => log verbose messages
    TxData  := 16#00000002,// bit 1 => log tx data
    RxData  := 16#00000004,// bit 2 => log rx data
    Info    := 16#00000100,// bit 8..15 => trace pdu info messages
    PduReq  := 16#00000200,
    PduInd  := 16#00000400,
    PduRsp  := 16#00000800,
    PduCnf  := 16#00001000,
    Warning := 16#00010000,// bit 16..23 => trace warning messages
    Error   := 16#01000000,// bit 24..30 => trace error messages
    Critical:= 16#80000000// bit 31 => trace critical messages
)DWORD;
END_TYPE

Values

Name

Description

None

None

Verbose

Text

TxData

Transmitted data

RxData

Received data

Info

Information

PduReq

PDU-Request

PduInd

PDU-Indication

PduRsp

PDU-Response

PduCnf

PDU-Confirmation

Warning

Warning

Error

Error

Critical

Critical