Using Service Center logs to support troubleshooting
We can often get errors and we don't quite know where they occur or where to start investigating.
A very interesting way to have something to start with and be more effective and quicker to find out where the errors are is through the logs generated automatically by the platform.
Remember in Chapter 7, Exceptions Handling, we talked about exception handlers? Well, it is at this point that we thank them for their existence, as if they have the option of Log Error as Yes
it will allow us to obtain the error information.
Tip
These errors are caught in the debugger when the flow enters the exception handler and exits the predicted flow. By default, these errors enter the most appropriate exception handler with their context. For example, an error caused by writing to the database is caught in the exception handler dedicated to database exceptions. If it does not exist explicitly, the error is handled by all exceptions...