I want to see the queue item level log. Like which all activity is performed and where it failed like step by step. I do not see any option in queue window to see the proper logs of which steps an queue item went through. Please advice.
I’m not running the full session and need the segregated queue level logs not the session level logs which will require scouring through a lot of queue items and time stamp and all.
Hello @tejaskumar.darji,
UiPath does not natively provide activity-level logs per queue item in Orchestrator. The standard approach is to add logging inside your transaction workflow for each step and use either Orchestrator logs, a custom DB, or UiPath Insights to track them.
There is no such option but you can enable recording of the job and queue level for failed transactions. There is also limitation of 3 minutes recording only. So it will record only last 3 minutes in case of failure.
You can do tht..but for that to work..you need to first log the unique reference or id of queue using add log fields activity in your code..
So that each log for that queue item processing will have the required id to filter on
Then either by downloading and filtering in excel or by using UiPath insghts you can seggregate and see each queue item level logs
Cheers
But it’s not ideal to add log message after each activity. For e.g. I have an UI automation that does 50 clicks, so we really don’t want to add 50 log messages after each click. If not, the exception message does not specify on which exact activity it did fail. Neither the activity name nor the UI element name.
So how would a developer know which exact step it did fail. Please advise.