# Protecting Sensitive Information

> Prevent sensitive variable and argument values from being logged during automation execution by marking activities as Private in Studio.

To protect sensitive information that is logged during the execution of your automation at the Verbose level, you can choose not to log variable and argument values in both Orchestrator and Studio.

To do this, you can select the **Private** property check box from the activities that use sensitive information.

:::note
* This property is currently not available in cross-platform projects and for some
activities in Windows projects.
* The property only applies to default log messages. It does not apply when explicitly
logging variable and argument values via activities such as **Write Line** or **Log Message**. To learn more, see [Logging Levels.](https://docs.uipath.com/studio/standalone/2025.10/user-guide/logging-levels#logging-levels)
:::

  ![Studio interface](https://dev-assets.cms.uipath.com/assets/images/studio/studio-docs-image-167769-0e660a2c.webp)

This option is visible in the **DisplayName** of the activity:

  ![Studio interface](https://dev-assets.cms.uipath.com/assets/images/studio/studio-docs-image-166451-83f1f0cc.webp)

This can also be achieved by using in the title of an activity, the reserved words from the `excludedData` parameter in the `project.json` file from a given project (`%HOMEPATH%\Documents\UiPath\[PROJECT NAME]`).

  ![Studio interface](https://dev-assets.cms.uipath.com/assets/images/studio/studio-docs-image-168429-5cee36a0.webp)

By default, only two words are reserved: "private" and “password.”

However, you can easily add custom reserved words, under the default ones, in between quotation marks. Please note that wildcards (*?) are supported.

  ![Studio interface](https://dev-assets.cms.uipath.com/assets/images/studio/studio-docs-image-170163-91ff2c29.webp)

In the example below, all the activities that have **password** in the name do not send logs to Orchestrator.

  ![Studio interface](https://dev-assets.cms.uipath.com/assets/images/studio/studio-docs-image-170113-85aa4e35.webp)
