Skip to content

Commit

Permalink
more boxlang updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Oct 18, 2024
1 parent 17a2e55 commit 82bacf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/logging/appenders/DBAppender.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ component accessors="true" extends="coldbox.system.logging.AbstractAppender" {
var category = getProperty( "defaultCategory" );

// Check Category Sent?
if ( NOT arguments.logEvent.getCategory() eq "" ) {
if ( !arguments.logEvent.getCategory().isEmpty() ) {
category = arguments.logEvent.getCategory();
}

Expand Down

0 comments on commit 82bacf9

Please sign in to comment.