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.
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.
All activities that have password in the name do not send logs to the orchestrator.
I hope you enjoyed the article!!
Happy automation!!