E_TraceLevel
Prioritätsstufe für Protokollierung der Fehlermeldungen und Logmeldungen.
Namensraum: Tc3_Collections
Bibliothek: 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
Werte
Name | Beschreibung |
---|---|
None | Keine |
Verbose | Text |
TxData | Gesendete Daten |
RxData | Empfangene Daten |
Info | Information |
PduReq | PDU-Request |
PduInd | PDU-Indication |
PduRsp | PDU-Response |
PduCnf | PDU-Confirmation |
Warning | Warnung |
Error | Fehler |
Critical | Kritisch |