From 6c04a0eb08c095b34d5e4e8c45eb68018ebb57bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 20 Jan 2022 17:15:44 +0100 Subject: [PATCH] testing_faq.md: clarify how to set system property for logging --- topics/basics/testing_plugins/testing_faq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/topics/basics/testing_plugins/testing_faq.md b/topics/basics/testing_plugins/testing_faq.md index a45b1ae3d..fabd2a85f 100644 --- a/topics/basics/testing_plugins/testing_faq.md +++ b/topics/basics/testing_plugins/testing_faq.md @@ -33,7 +33,8 @@ In some situations, added or changed files (e.g. DTDs provided by plugin) are no ### How to enable DEBUG/TRACE logging? -Set system properties `idea.log.debug.categories` or `idea.log.trace.categories`, respectively. +Provide JVM system properties (Gradle: via `systemProperty` for `test` task) `idea.log.debug.categories` or `idea.log.trace.categories`, respectively. +Multiple categories can set using a comma separated value list. ### How to get separate logs for failing tests?