Skip to content

Commit e7eb5e1

Browse files
committed
ACF 2018 compat
1 parent 1d52047 commit e7eb5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/logging/AppenderService.cfc

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ component accessors="true" singleton {
9191
string category
9292
){
9393
if ( !isNumeric( arguments.severity ) ) {
94-
if ( !this.logLevels.keyExists( arguments.severity ) ) {
94+
if ( !structKeyExists( this.logLevels, arguments.severity ) ) {
9595
throw(
9696
type = "cbelasticsearch.logging.InvalidSeverity",
9797
message = "The severity [#arguments.severity#] provided is not valid. Please provide a valid numeric serverity or one of the following levels [#this.logLevels.keyArray().toList()#]."

0 commit comments

Comments
 (0)