How to protect to log the sensitive information in UiPath

In UiPath , we can easily prevent the sensitive information to be logged during the execution of your automation at the verbose level. We can choose not to log variables and arguments in both orchestrator and Studio.

We can achieve this by selecting the private property checkbox of the activity that uses sensitive information.


This can also be achieved by project.json file, the reserved words from the excludedData parameter in the project.json.
image

By default, only two words are reserved- “Private” and “Password”.

We can also add custom reserved words in between question marks, Wildcards are also supported.
image

All activities that have password in the name do not send logs to the orchestrator.

I hope you enjoyed the article!!

Happy automation!!

3 Likes

Nicely explained. Thank you :slight_smile:

2 Likes