From e1ac843ffb2965ac4e205cdd38aadc7c8f16293a Mon Sep 17 00:00:00 2001 From: Krystian Wojtas Date: Tue, 8 Feb 2022 18:43:36 +0100 Subject: [PATCH] tutorials: fixed described log level number to correspond with code Part-of: --- .../gst-docs/markdown/tutorials/basic/debugging-tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-docs/markdown/tutorials/basic/debugging-tools.md b/subprojects/gst-docs/markdown/tutorials/basic/debugging-tools.md index 52750dbda8..1150464277 100644 --- a/subprojects/gst-docs/markdown/tutorials/basic/debugging-tools.md +++ b/subprojects/gst-docs/markdown/tutorials/basic/debugging-tools.md @@ -87,7 +87,7 @@ The `GST_DEBUG` environment variable, then, is a comma-separated list of representing the default debug level for all categories. The `'*'` wildcard is also available. For example -`GST_DEBUG=2,audio*:6` will use Debug Level 5 for all categories +`GST_DEBUG=2,audio*:6` will use Debug Level 6 for all categories starting with the word `audio`. `GST_DEBUG=*:2` is equivalent to `GST_DEBUG=2`.