Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 1.05 KB

Debugging.md

File metadata and controls

30 lines (16 loc) · 1.05 KB

Code coverage

Table of contents


Overview

This documentation shows some debugging related stuff.


Using logpoints

Logpoints are are a very nice way to print stuff of interest during a debug session without using good old printf or cout debugging.

Using logpoints

Simply do a right click besides the line number, select Add Logpoint and write a message that should be printed during the debugging session. Use curly braces to denote variables that should be printed.


References