Skip to content

Instantly share code, notes, and snippets.

@learncfinaweek
Created November 20, 2012 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save learncfinaweek/4121415 to your computer and use it in GitHub Desktop.
Save learncfinaweek/4121415 to your computer and use it in GitHub Desktop.
Error Handling and Debugging - Hands On 30

In this hands on, you are going to create an error and view the error information in the log files.

Tags Used: <cfoutout>

  1. To view the error information, we must first throw an error. Create a new file in the /www/ folder called throwError.cfm.
  2. Open up the /www/throwError.cfm file in your code editor.
  3. Add the following lines of code:
    <cfoutput>
    	#foo#
    </cfoutput>	
    
  4. Open the /www/throwError.cfm page in your browser. You will see an error that states Variable FOO is undefined.
  5. Notice that the error is displayed but with not much additional information. This is not helpful when developing a web site. Open up your ColdFusion administrator and log in. The URL for the ColdFusion Administrator is most likely http://localhost:8500/CFIDE/administrator/.
  6. Click on 'Debugging Output Settings' under 'Debugging and Logging'.
  7. Check the 'Enable Robust Exception Information' option and click 'Submit Changes'.
  8. Reload the throwError.cfm page in your browser. Notice that you now get the file name and line number the error is on.
  9. Go back to the ColdFusion administrator.
  10. Click on the 'Log Files' link under Debugging & Logging.
  11. Click on the 'Search / View Log File' button (the first one) for the application.log file.
  12. You will notice that the first item on the screen is details regarding the error that was just thrown. The application name column will show the name of the application which threw the error, in this case, learncfinaweek. Also, you will see details regarding the error that was just shown to you on the screen. You can see the error message, the file that threw the error, and the line number. When error handling is turned on, this information can be very useful when debugging errors.
  13. Go back to the Log Files screen.
  14. Click on the 'Delete Log File' icon (the 4th icon from the left) for the exception.log file. This will delete the exception log file.
  15. Go back to the throwError.cfm page and refresh.
  16. Go back to the Log Files screen and you will see the exception.log file is back.
  17. Click on the 'Search / View Log File' icon (1st on the left) for the exception.log file.
  18. The first item in the list will be the error that you generated. In this view, you will see a lot of additional information regarding the error, such as the full Java stack trace.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment