What is Studio Traces in UiPath Studio

0 votes
Can anyone suggest what are studio traces in UiPath Studio?
Mar 28, 2019 in RPA by Avantika
490 views

1 answer to this question.

0 votes

Hey @Avantika, Studio Traces are diagnostic log messages generated by Studio, containing information related to its behavior. The logging level settings and log file path can be modified by editing the 

<Installation Folder>\UiPath.Studio.exe.config file

If this file does not exist, it is automatically created when an event occurs. The section can be found under the <nlog> tag.

The default selected logging level for Studio is Information, but more levels can be added or excluded in the same configuration file. To only log Error and Warning levels, specify them in between the <rules> tag, like in the example below:

<rules> <logger name="*" level="Error" writeTo="AsyncTarget" />
<logger name="*" level="Warning" writeTo="AsyncTarget" /> </rules>

To limit the logs to a specific size, set the archiveAboveSize="<value in bytes>" in the <target> section:

<target name="AsyncTarget" xsi:type="AsyncWrapper" minlevel = "Off"><target name="logfile" xsi:type="File" fileName="${logDirectory}/${shortdate}_Studio.log" layout="${time} =&gt;[${level:uppercase=true}] [${logger}] [${threadid}] ${message}" archiveAboveSize="<value in bytes>/> </target>

To disable logging, simply set the minlevel tag to ”Off”, as you can see below:

<rules> <logger name="*" minlevel="Off" writeTo="AsyncTarget" /> </rules>

To change the log file path, simply change the value of the logDirectory parameter with the path you want to use.For example, to move the log file path to the Desktop:

modify the value="${specialfolder:folder=LocalApplicationData}/UiPath/Logs" parameter to value="${specialfolder:folder=DesktopDirectory".
answered Mar 29, 2019 by Abha
• 28,140 points

Related Questions In RPA

0 votes
1 answer

What is Flow Decision used for in UiPath studio?

Hi Smita, Flow Decision activity is a ...READ MORE

answered Mar 19, 2019 in RPA by Pratibha
• 3,690 points
5,796 views
0 votes
1 answer

What is Get Attribute activity and how it can be used in UiPath Studio?

Hey @vaani, Get Attribute activity in UiPath ...READ MORE

answered Mar 20, 2019 in RPA by Abha
• 28,140 points
7,436 views
–1 vote
2 answers

What is the keyboard shortcut for recording tasks in UIPath Studio?

Hi @Danish, UiPath supports a vast range ...READ MORE

answered Mar 23, 2019 in RPA by Anvi
• 14,150 points
5,870 views
0 votes
1 answer

What is workflow design in UiPath studio?

Hey @Bindu, UiPath Studio provides Automated Workflow Designs which ...READ MORE

answered Mar 25, 2019 in RPA by Pratibha
• 3,690 points
1,119 views
0 votes
1 answer

What are the levels of logging in UiPath studio?

Hey @Amit, logging levels present in UiPath ...READ MORE

answered Mar 29, 2019 in RPA by Anvi
• 14,150 points
4,381 views
0 votes
1 answer

Explain the meaning or use of common log fields present in all logs.

Hey @Yuvika, These are some common log fields ...READ MORE

answered Mar 29, 2019 in RPA by Anvi
• 14,150 points
1,382 views
0 votes
1 answer

State some Type-specific fields present in different log types in UiPath studio

Hi @Zaid, some of the following type-specific ...READ MORE

answered Mar 29, 2019 in RPA by Anvi
• 14,150 points
560 views
0 votes
1 answer

Identify a Column in a database in UiPath Studio

There are two options to identify a ...READ MORE

answered Feb 12, 2019 in RPA by Sahiti
• 6,370 points
2,497 views
0 votes
2 answers

What is Delay Activity in UiPath Studio?

"Delay" activity is used to add a ...READ MORE

answered May 9, 2020 in RPA by Biju Joseph
15,265 views
0 votes
1 answer

What is Get Jobs activity used for in UiPath Studio?

Hey @Rakesh, Get Jobs Activity can be ...READ MORE

answered Mar 14, 2019 in RPA by Abha
• 28,140 points
2,732 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP