When To Log
Less Performant
log.debug( "This is my log message, some #dynamic# date is here", dataCFC );Can{} Methods
if( log.canDebug() ){
log.debug( "This is my log message, some #dynamic# date is here", dataCFC );
}Closure Wrapper
log.debug( () => "This is my log message, some #dynamic# date is here", dataCFC );Was this helpful?