On Thursday, September 12, 2013 12:23:44 PM UTC-7, Dan Wilson - 
[email protected] wrote:
>
> you could use event.getAll()
>
> But a fair warning, it will get everything inside ModelGlue. Which could 
> be quite a bit of stuff.
>
> I usually dump out the CGI, Form, URL, Session
>
>
I do similar.  You might also try fetching the event.getall() but looping 
over it and only displaying simple values if you want to avoid your email 
from being 100k lines long:

<cfset all = event.getAll()>
<cfloop array="all" index="item">
  <cfif isSimpleValue(item)>
    // do stuff
  </cfif>
</cfloop> 


-- 
-- 
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog

You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"model-glue" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to