console.log
output and exceptions. Console.logs
are helpful if you have issues with database scripts. You can view the results from your database scripts such as success messages, error messages, and console.log()
statements.
To learn more, see Real-time Auth0 Webtask Logs in Auth0’s Github repository.
The Real-time Webtask Logs extension uses the user’s request, so you should be cautious about logging sensitive information. For example, your custom database scripts work extensively with the
user
object, which may contain sensitive information. Logging the complete object may lead to the disclosure of sensitive information in the Webtask Logs extension.Auth0 strongly discourages such practices. We suggest that you be aware of the objects that you log and ensure sensitive information is not logged.Configure the extension
To install and configure this extension:- Navigate to the Extensions page of the Auth0 Dashboard, and click the Real-time Webtask Logs box. The Install Extension window opens.
- Click the Install button.
Use the extension
To view your logs:- Navigate to Auth0 Dashboard > Extensions, and select Installed Extensions.
- Select Real-time Webtask Logs.
Debug rules
You can use the Real-time Webtask Logs extension to debug any Rules in your implementation, including allconsole.log
output and exceptions. To learn more, read Auth0 Rules.
In the following example, you will create a generic Hello World rule, run it, and use the Real-time Webtask Logs extension to see the results.
- Navigate to Auth0 Dashboard > Auth Pipeline > Rules, and select Create Rule.
-
Select the Empty rule template, paste the code below (or modify it as you like), and Save Changes.
- Open a new tab, navigate to Auth0 Dashboard > Extensions, and select Installed Extensions.
- Select Real-time Webtask Logs. You are now viewing logs real-time and are ready to try your rule.
- Switch to your Rules tab, and click Try This Rule.
- Switch to your Real-time Webtask Logs tab to see the results.