Google News
logo
RPA - Interview Questions
What are logs? Name the different types of logs.
Logs are time-stamped files that contain application-related information, error, and warning messages. The following are the two sorts of logs :
 
* Default logs : Default logs are created by default when a project's execution begins and ends, when a system problem occurs and the execution stops, or when the logging settings are set up to log every activity's execution. This category logs the following events : 

Execution start : It is generated every time a process begins.
Execution end : It is generated every time a process terminates.
Transaction start : It is generated every time a transaction within a process begins.
Transaction end : It is generated every time a transaction within a process terminates.
Error log : It is generated every time execution is ceased by an error.
Debugging log : It is generated if the Robot Logging Setting is turned to Verbose and contains activity names, types, variable values, arguments, and other information.

* User-defined logs : When using the Log Message action or the Write Line activity, user-defined logs are generated according to the process defined by the user in Studio.
Advertisement