overriding output=false in a cfcomponent or cffunction

2011-07-01 Thread Michael Dinowitz
Lets say I have a cffunction tag using output=false and I'm using a cftry/cfcatch within the function to handle an error. With output set to false, I can't display an error message or dump any vars. Does anyone know of a way to disable the output=false dynamically? Thanks

Re: overriding output=false in a cfcomponent or cffunction

2011-07-01 Thread Raymond Camden
You normally only dump for testing, so just add an abort and you will see it: cfdump var=#something# abort As for errors, even with output=false you can cfthrow an error and it will show up. On Fri, Jul 1, 2011 at 6:36 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: Lets say I have a

Re: overriding output=false in a cfcomponent or cffunction

2011-07-01 Thread Dave Watts
Lets say I have a cffunction tag using output=false and I'm using a cftry/cfcatch within the function to handle an error. With output set to false, I can't display an error message or dump any vars. Does anyone know of a way to disable the output=false dynamically? No, you can't dynamically