Developing Secure Code
Testing Components
Disable Caching Setting During Development
Log Messages
Previous PDF Versions
There are a few basic tools and techniques that can help you to debug applications.
Use Chrome DevTools to debug your client-side code.
To learn more about debugging JavaScript on Google Chrome, refer to the Google Chrome’s DevTools website.
Check out this video on how to troubleshoot your Aura components.
Disable Caching Setting During Development
Disable the secure and persistent browser caching setting during development in a sandbox or Developer Edition org to see the effect of any code changes without needing to empty the cache.
To help debug your client-side code, you can write output to the JavaScript console of a web browser using console.log() if your browser supports it..