Exporting Debug Information

<< Click to Display Table of Contents >>

Navigation:  HowTo's > Debugging and Simulation >

Exporting Debug Information

Since EnsensoSDK 2.1 a more feature rich method to debug an NxLib based application is available with the NxProfiler tool. NxProfiler can open and visualize *.nxlog files which consist of collected debug information in a proprietary binary format.

General working principle

Each internal NxLib threads will write debug information according to the global logging level /Debug/Level into a ring buffer. Each thread has its own buffer with the size specified in /Debug/BufferSize.

The application should call nxLibGetDebugBuffer to collect the buffered data from all threads and write it into binary file with extension '.nxlog'.

oRepeated calls to nxLibGetDebugBuffer can retrieve more data which can be simply append to the binary file

The NxProfiler application can then open the .nxlog file and visualize the debug data on a timeline.

Debug levels

There are 4 different debug levels:

Off: Disables profiling outputs.

Info: Outputs only basic information like command executions. Can be used without measurable influence on the application performance.

Debug: Outputs more information about sub steps of commands or helper threads.

Trace: Full logging including all API calls and parameter values. We recommend to use this level only for debugging purposes.

 

hmtoggle_plus1C++

 

Generate custom debug information

A user application can insert its own debug information into the NxLib's internal logging mechanism. This allows to easily debug multithreaded timings and interactions and between NxLib and application specific code in NxProfiler.

hmtoggle_plus1C++

Debug Log Files with Automatic Rotation

Since EnsensoSDK 2.2.129 you can also use the /Debug/FileOutput node to let NxLib automatically write log files onto the hard disk. When starting the logging or after the current log file has reached MaxFileSize a new log file will be created automatically based on FolderPath and FilePrefix. Old log files will be deleted if the size of old logs with the same prefix exceeds MaxTotalSize.

hmtoggle_plus1C++

Retrieving debug information

There are two ways of retrieving the debug information.

The first option is to copy the debug buffer directly with nxLibGetDebugBuffer. With this method the debug information is still in binary form and can be interpreted by NxProfiler.

Note: You can freely concatenate several retrieved buffers as long as they originate from the same NxLib instance.

The second option is to get the information in text form with nxLibGetDebugMessages, but we recommend to use nxLibGetDebugBuffer because the text format cannot hold all raw debug data and cannot be interpreted by NxProfiler. Further more NxProfiler can later generate this text output format from the binary data returned by nxLibGetDebugBuffer.

hmtoggle_plus1C++
hmtoggle_plus1Halcon/HDevelop