var ReturnObject = ''; var buildError = StructNew(); try { // Call the getBean method from the extended Lightwire.cfc in Lightwire ReturnObject = Super.getBean(argumentCollection=arguments); } catch( Any e ) { // Build the Error Struct buildError.args = arguments; buildError.details = e; // Log the Error struct and add it to the ADF buildErrors Array doBuildErrorLogging("getBean",buildError); } return ReturnObject; var dump = ""; var logFileName = dateFormat(now(), "yyyymmdd") & "." & request.site.name & ".ADF_" & arguments.methodName & "_Errors.htm"; var errorStruct = arguments.errorDetailsStruct; // Add the methodName to the errorStruct errorStruct.ADFmethodName = arguments.methodName; // Add the errorStruct to the server.ADF.buildErrors Array ArrayAppend(server.ADF.buildErrors,errorStruct);