From 53fb9bcf3af21cbc6efcc233dd57383c94218b84 Mon Sep 17 00:00:00 2001 From: DrishtiTripathi2230 Date: Sun, 17 May 2026 15:41:11 +0530 Subject: [PATCH] docs: add missing v3 include to logging.md --- docs/logging.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/logging.md b/docs/logging.md index fc3a7acaab..18b171cdf9 100644 --- a/docs/logging.md +++ b/docs/logging.md @@ -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 +``` + **example** ```cpp TEST_CASE("Simple info") {