Hi,
I'm running CF 7.0.2. The app is using Flash forms.
I have this onError function in my Application.cfc.

<cffunction name="onError">
<cfargument name="Except" required="yes">
<cfargument name="EventName" type="string" required="yes">
<cflog file="#This.Name#" type="error" text="Event Name: #EventName#"
time="yes">
<cflog file="#This.Name#" type="error" text="Messsage: #except.message#"
time="yes">
<cflocation url="errorPage.cfm" addtoken="no">
<cfabort>
</cffunction>

The app is working fine but my log file is full of errors:

Event Name: onRequestStart
Messsage: Event Handler Exception

Any idea what's wrong?
Is there any way to get more specific error message?
Thanks,
b.