diff --git a/topics/basics/ide_infrastructure.md b/topics/basics/ide_infrastructure.md
index 164bc7a26..fd4dc601b 100644
--- a/topics/basics/ide_infrastructure.md
+++ b/topics/basics/ide_infrastructure.md
@@ -85,7 +85,10 @@ To let users report such errors to the vendor, plugins can use one of the soluti
See [IntelliJ Platform Explorer](https://jb.gg/ipe?extensions=com.intellij.errorHandler) for existing implementations — ranging from pre-filling web-based issue tracker forms to fully automated submission to log monitoring systems.
This [tutorial](https://www.plugin-dev.com/intellij/general/error-reporting/) also offers a working solution for using _Sentry_.
-To disable the red exclamation notification icon in the status bar, invoke Help | Edit Custom Properties... and add `idea.fatal.error.notification=disabled` in opened idea.properties.
+The red exclamation notification icon in the status bar is controlled with the `idea.fatal.error.notification` system property.
+The property can be edited in idea.properties file opened with Help | Edit Custom Properties...:
+- `idea.fatal.error.notification=disabled` hides the component
+- any other value or the lack of the property enables the component
## Runtime Information