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" ```