From 3c452a7146ebfc454c18d28b06f00810ae0be05b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Fri, 5 Dec 2025 15:22:40 +0100 Subject: [PATCH] [Doxygen] Newline. Took 2 minutes --- doc/doxygen/extra-pages/developer_documentation/logging.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/doxygen/extra-pages/developer_documentation/logging.md b/doc/doxygen/extra-pages/developer_documentation/logging.md index 0de2055a3..f0c5d7c5e 100644 --- a/doc/doxygen/extra-pages/developer_documentation/logging.md +++ b/doc/doxygen/extra-pages/developer_documentation/logging.md @@ -42,6 +42,7 @@ inline Q_LOGGING_CATEGORY(ExampleCategory, "cockatrice_example_category"); inline Q_LOGGING_CATEGORY(ExampleSubCategory, "cockatrice_example_category.sub_category"); in .cpp + qCInfo(ExampleCategory) << "Info level logs are usually sent through the main category" qCDebug(ExampleSubCategory) << "Debug level logs are permitted their own category to allow selective silencing" ```