Copy link to clipboard
Copied
Has the usage of writedump changed in 2025?
I have both 2023 and 2025 running side by side on the same dev server using the same cfscripts. However when i do writedump(var=info,abort=true) to debug soemthing in 2023 i get a proper dump in the response. In 2025 all i get is [coldfusion.runtime.AbortException : null]
Maybe im missing something but the developer profile is enabled and all debuging is set up the same on both instances. I can also confirm the same behaviour under both Windows and Linux installs of 2025.
Copy link to clipboard
Copied
@SaschaD , first it may surprise you to hear but I don't get that error, on any machine running CF2025, whether update 2 or 1 or 0, and as tested on multiple machines running both Windows and Linux.
If you may want to see it for yourself, run the code on either or both of the sites, cffiddle.org or trycf.com, which let you choose what CF version to run on. That's a helpful tip for when anyone wants to test such things on a machine other then their own.
And here's some code that anyone could try, which reports also the CF version, update level, and OS:
<cfscript>
writedump(var=server.coldfusion,abort=true)
</cfscript>
Let us know what you may find.
As for the error you get, if it proves to be unique to your own machine, one thing to consider is whether your application of any update to CF2025 may have had an error. It can happen. See the update log found in cf's cfusion/hf-updates folder, in the folder under that for the latest update you applied, then within that folder see the longest-named log file, which includes the date/time you ran the update. Then look at about line 70, to see a table tracking the count of successes, warning, fatalerrors, and nonfatalerrors. Are the latter two non-zero? If so, try re-running the update. (I also have a blog post with more on dealing with CF update problems.)
Copy link to clipboard
Copied
To me, the situation you describe suggests 2 things:
try {
/*** The code causing the issue ***/
}
catch (any exception) {
writedump(exception);
}
Find more inspiration, events, and resources on the new Adobe Community
Explore Now