Issues
- syntax errors or throws in web.cfc aren't logged to console or fatalLDEV-5443
- add listenerType and ListenerMode to getApplication SettingsLDEV-5442Resolved issue: LDEV-5442Pothys - MitrahSoft
- Query Listener UDFs don't have the current application scopeLDEV-5187
- allow cancelling an AI inquiry by returning false from the listenerLDEV-5110Michael Offner
- Query Listener causes error if using null=true without value attribute on query paramLDEV-4869Resolved issue: LDEV-4869Michael Offner
- Query listener drops "null" from params, breaking any query using null="true"LDEV-4868Resolved issue: LDEV-4868Zac Spitzer
- function listeners onProgressLDEV-4864
- create function listenersLDEV-4860Resolved issue: LDEV-4860Michael Offner
- add charset, failto, replyto details to Mail listener argumentsLDEV-4219Resolved issue: LDEV-4219Michael Offner
- the application mail listener logs NPE in remoteClient.logLDEV-3853Resolved issue: LDEV-3853Pothys - MitrahSoft
- allow extensions to register listenersLDEV-3792
- add support for cfhttp listenersLDEV-3779Michael Offner
- Web.cfc in webrootLDEV-3778Resolved issue: LDEV-3778Michael Offner
- add cfexecute progressListener to stream outputLDEV-3667
- onMissingKey listener for structLDEV-3579Resolved issue: LDEV-3579Pothys - MitrahSoft
- add a log listener to application.cfcLDEV-3035
- getApplicationSettings().datasources missing infoLDEV-2739Pothys - MitrahSoft
- error listener for query failsLDEV-2735Resolved issue: LDEV-2735
- add listener for cfquery in application.cfc/cfapplicationLDEV-1881Resolved issue: LDEV-1881
- Addition of Server.cfcLDEV-1472
- add support for mail listenerLDEV-1452Resolved issue: LDEV-1452Michael Offner
- Add Hooks for Java Event ListenersLDEV-672
- Listener mode modern invokes Application.cfm filesLDEV-287Resolved issue: LDEV-287
23 of 23
syntax errors or throws in web.cfc aren't logged to console or fatal
Description
Environment
None
relates to
Details
Assignee
UnassignedUnassignedReporter
Zac SpitzerZac SpitzerPriority
NewNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
Details
Details
Assignee
Unassigned
UnassignedReporter
Zac Spitzer
Zac SpitzerPriority
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
Created 27 March 2025 at 10:07
Updated 27 March 2025 at 16:44
Activity
Show:
Zac Spitzer27 March 2025 at 10:57
I am seeing a log in the exception.log, but the initial startup is before a request, I think this should go to the console
While adding a Web.cfc in the webroot, for some defensive config checks, I discovered the following
i.e. a throw
component { public function onWebStart(reload) { var as = getApplicationSettings(onlySupported=true); systemOutput("------------------------------- [ #as.listenerMode?:"unset"# ]", true); if ( structKeyExists( as, "listenerMode" ) && as.listenerMode == "modern" ){ throw "Lucee not configured to support Application.cfm, please set listenerMode to 'mixed'," & " currently set to [#as.listenerMode?:''#]"; } } }
or syntax errors
component { public function onWebStart(reload) { var as = getApplicationSettings(onlySupported=true); systemOutput("------------------------------- [ #as.listenerMode?:"unset"# ]", true); ifzzzz ( structKeyExists( as, "listenerMode" ) && as.listenerMode == "modern" ){ throw "Lucee not configured to support Application.cfm, please set listenerMode to 'mixed'," & " currently set to [#as.listenerMode?:''#]"; } } }
doesn’t even seem to log anything to the console (systemoutputs work)?