diff --git a/rules/S7416/kotlin/rule.adoc b/rules/S7416/kotlin/rule.adoc index 11679d4cd9..21695e4d34 100644 --- a/rules/S7416/kotlin/rule.adoc +++ b/rules/S7416/kotlin/rule.adoc @@ -1,4 +1,4 @@ -Development tools and frameworks usually have options to make debugging easier for developers. Although these features are useful during development, they should never be enabled for applications deployed in production. Debug instructions or error messages can leak detailed information about the system, like the application’s path or file names. +The release build of an application is generally meant for distribution to end users. By making this target debuggable, you expose your application to unnecessary risks. Debug instructions or error messages can leak detailed information about the system, like the application’s path or file names. == Why is this an issue?