Currently I have Error Handling like below but i was wondering how can i 
add variables/arguments form post to the below email. So if and error 
happens on a controller or cfc it would dump out all the agruments that 
were inputed. Same with something like a page so i can figure out and 
replicate what happened before i used <cfdump var="#arguments#"> or <cfdump 
var="#attributes#"> (old fusebox frame work) is there something i can set 
to get it to dump out variables? 

<cfmail from="[email protected]" subject="Error" to="[email protected]" 
            type="text/html">
    
        <p>
            Error For User: 
            TEST
        </p>
        <p>
            Application: TEst
        </p>
        <table>
            <tr>
                <td valign="top">
                    <b>
                        Message
                    </b>
                </td>
                <td valign="top">
                    #exception.message#
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <b>
                        Detail
                    </b>
                </td>
                <td valign="top">
                    #exception.detail#
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <b>
                        Extended Info
                    </b>
                </td>
                <td valign="top">
                    #exception.ExtendedInfo#
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <b>
                        Tag Context
                    </b>
                </td>
                <td valign="top">
                    <cfset tagCtxArr = exception.TagContext/>
                    <cfloop index="i" from="1" to="#ArrayLen(tagCtxArr)#">
                        <cfset tagCtx = tagCtxArr[i]/>
                        #tagCtx['template']# 
                        (
                        #tagCtx['line']#
                        )
                        <br>
                    </cfloop>
                </td>
            </tr>
        </table>
         
    </cfmail>

-- 
-- 
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