debugger.Trace.Information
|
This function displays conditional trace information.
[Specification format]
debugger.Trace.Information()
|
[Argument(s)]
None
[Return value]
List of conditional trace information (see the TraceEventInfo class for detail)
[Detailed description]
- | This function displays conditional trace information is shown by the following format. |
trace-event-number Trace state start-address - end-address
|
[Example of use]
>>>ti = debugger.Trace.Information()
1 Trace Enable main - sub
>>>print ti[0].Number
1
>>>print ti[0].Name
Trace
>>>
|