Elogging

SCPI Command :

SENSe:WLAN:SIGNaling<instance>:ELOGging:ALL
class EloggingCls[source]

Elogging commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class AllStruct[source]

Structure for reading output parameters. Fields:

  • Category: List[enums.LogCategoryB]: INFO | WARNing | ERRor | EMPTy Category of the entry, as indicated in the main view by an icon EMPTy means that there are no entries.

  • Timestamp: List[str]: string Timestamp of the entry as string in the format ‘hh:mm:ss’

  • Description: List[str]: string Text string describing the event

get_all() AllStruct[source]
# SCPI: SENSe:WLAN:SIGNaling<instance>:ELOGging:ALL
value: AllStruct = driver.sense.elogging.get_all()

Queries all entries of the event log. For each entry, three parameters are returned, from oldest to latest entry: {<Category>, <Timestamp>, <Description>}entry 1, {<Category>, <Timestamp>, <Description>}entry 2, …

return:

structure: for return value, see the help for AllStruct structure arguments.