Anybody familiar with oooold Mura/Masa 6.2? why ca...
# cfml-general
g
Anybody familiar with oooold Mura/Masa 6.2? why can’t I set simply a cfdump/cfabort? Output is always empty (I changed a few cfcs to output=true without success)
e
Been a while, but I think the work around for this was to add a CFFLUSH in a template file and then a CFDUMP at the very end end of the template chain, in another file. I know it was not the standard "Mura" way.
g
I’m currently in some cfcs… trying to figure out the request lifecycle…. I will try cfflush… my guess was that they somewhere wrapped it in a cfsilent which I wasn’t able to find… even disabling all cfcontent reset=true didn’t work
r
I would suggest using cflog if you are still struggling to get debug information. if you need a variable dump, I sometimes use SerializeJSON() to give me the dataset. Just be careful not to dump a large entity since that can bog down the server.
s
cfdump also has the output attribute, console/file
g
Thanks for the input, will try on Monday