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 last month
Updated last month
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)?