Understanding the differences between application and custom logs
Application logs are logs that are generated by RPA applications to record information about their behavior and performance. These logs typically contain information about application events, such as user actions, system events, and errors. They can be used to monitor and troubleshoot applications, as well as to identify areas for optimization and improvement.
The following is a sample application log:
2023-04-05 14:33:21,303 - INFO - Application starting up... 2023-04-05 14:33:21,361 - INFO - Connected to database server at address 192.168.1.100 2023-04-05 14:33:23,112 - ERROR - An error occurred while processing user request: "Invalid password" Traceback (most recent call last): File "app.py", line 126, in process_request raise ValueError("Invalid password") ValueError: Invalid password 2023-04-05 14:33:23,250 - INFO - User "jdoe" logged...