Hi,
In my workflows I am setting the log level to Trace. Is there a way to turn on of off these logs? What happens when I change to “Info” level.
Where do I find the generated logs?
Thank you,
Hi,
In my workflows I am setting the log level to Trace. Is there a way to turn on of off these logs? What happens when I change to “Info” level.
Where do I find the generated logs?
Thank you,
Yes you have 3 ways:
Log Level
. You can set it to Trace
, Info
, Warn
, Error
, or Fatal
.Error
) will log less detailed information, effectively reducing the amount of logging.Settings
tab.Logging
, you can change the Log Level
.Log Message
activity within your workflows to log custom messages at different levels (Trace
, Info
, Warn
, Error
, Fatal
).Info
, only messages logged at the Info
, Warn
, Error
, and Fatal
levels will be recorded. This reduces the amount of detailed trace information and focuses on more significant events.Info
level is typically used to log general information about the execution flow, while Trace
is more verbose and includes detailed diagnostic information.Logs would be available at two places depending on from where you executed the bot.
C:\Users\<YourUsername>\AppData\Local\UiPath\Logs
Thanks,
Ashok
Hi @A_Learner
To know about logging Levels check the below documentation
=> You can change the log Levels in UiPath Assistant.
Click on your name icon → Preferences → General → under EDR Protection you can see Log Level. you can change over there.
=> Impact of Changing Log Levels:
Trace to Info: When you change from Trace to Info, you’ll see fewer details in the logs. For example, variables’ detailed values and intermediate steps may not be logged at the Info level, whereas they would be at Trace.
=> Log Location:
Studio Logs: Logs generated in UiPath Studio can be found in %localappdata%\UiPath\Logs
. These logs capture activities within Studio itself, like project loading and publishing.
Execution Logs: Logs generated during the execution of workflows (e.g., when run from UiPath Robot) are stored in %localappdata%\UiPath\Logs
. They include execution details based on the selected log level.
Log Files: Each run generates a separate log file. The naming convention typically includes the project name, timestamp, and execution details.
LLM helped me to write this answer but it’s validated by me!
Hope you understand!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.