Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Catch2 provides various macros for logging extra information when
running a test. These macros default to being scoped, and associate with
all assertions in the scope, regardless of whether they pass or fail.

To use the logging macros described on this page, include:
```cpp
#include <catch2/catch_test_macros.hpp>
```

**example**
```cpp
TEST_CASE("Simple info") {
Expand Down