$toString() and ExtraInfo Argument
// User.cfc
component{
function $toString(){
// return my representation as a comma list of values of my properties
return "#getName()#,#getAge()#,#getEmail()#";
}
}user = userService.getUser( rc.id );
// need to log it.
if( log.canDebug() ){
log.debug( "User just got logged in right now!", user );
}Last updated
Was this helpful?