Apply review suggestion

This commit is contained in:
Pierre-Loup 2025-03-17 13:46:35 +01:00 committed by Pierre-Loup
parent 99d5ce6339
commit 0884cdba3c

View File

@ -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 applications 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 applications path or file names.
== Why is this an issue?