All most all the core activities under UiPath.Core have boolean property Private. Can anyone let me know when to use this property. I did not observe any difference of checking/unchecking this property or may be I did not aware of use case.
@Siva_Tiyyagura By default, log will be created for every activity inside the Workflow while executing. These logs will be added in a text file. To avoid adding log for an particular activity you can use Private property. You can view the logs in following path C:\Users\Your_Login_account\AppData\Local\UiPath\Logs.
Thanks for quick response. But in my case, I’m seeing no difference in the generated log both checking and unchecking Private property.
Am I missing something?
The elephant in the room is that ticking Private only stops variables and arguments from being logged when it is set to Verbose. Outside of this it is irrelevant and does nothing.
Hey @Siva_Tiyyagura
checking Private property is to protect sensitive information that is logged during the execution of your automation at the Verbose level only
by checking it you can choose not to log variable and argument values in both Orchestrator and Studio at verbose level trace.