CFML debugging: cfdump shown to specific site visitor
Here's a quick little snippet to show CFDUMP content only to your IP, without interrupting the flow of traffic for anyone else who may be using the same site:
<cfif cgi.REMOTE_ADDR is 'My.IP.Address.Here'>
<cfdump var="#form#">
<cfabort>
</cfif>
If you aren't sure of your outward-facing IP address, visit www.whatismyip.com
In this example we are dumping out the #form# scope, but you can dump out whatever you like (by changing the "var" attribute of the cfdump tag) or put any code at all inside the
I wouldn't leave this in a live site but for a quick view of what's going on, without interrupting the experience of others, I find it quite useful.

