This is a guide on how to use the Debugger to troubleshoot uncaught exceptions and errors in Flex UI and Plugins. Found in your Twilio console, the Debugger contains a detailed log of activity within your application. This log can help you dive deeper and understand which Twilio resources were impacted (and by whom).
With the integration, you are able to access the following in the Debugger:
console.error
messagesThe debugger is enabled by default. You can enable or disable the Debugger Integration on the features page within Flex Admin.
With the Debugger Integration enabled, any uncaught JavaScript exceptions will automatically be logged. These will include details on the exception, the user who was logged in, and the version of the Flex UI that is being used.
You can trigger custom debugger notifications through console.error
statements included in your code.
console.error('Unable to connect to MyCRM: %s', myCRMUrl);
We do not currently support additional levels of logging, like debug
, log
, info
, and warn
.
To get to the Error logs, open the console, click the Monitor tab and click on the Error logs under the Errors menu.
Once in the Error logs, you can dig into the details.
Clicking on a debug event will give you a more detailed view of the event
In addition to the user
information contained within the notification, the Resource Sid represents the TaskRouter Worker for that user.
Now that you've integrated Flex with the Debugger, learn more about customizing the settings in the Debugger and other ways to debug your Flex Applications.