Blog

LogBox 1.6 Released!

Luis Majano January 17, 2011

Spread the word

Luis Majano

January 17, 2011

Spread the word


Share your thoughts

Our amazing LogBox: Enterprise Logging Library reaches another step in awesomeness to version 1.6.  This release includes incredible performance tuning, fixes and some cool new updates:

This release includes the following:
  • coldbox-1128  Convenience methods for log checking: canDebug(), canInfo(), canWarn(), canFatal(), canError().

  • coldbox-1129 Better documentation on logging classes and levels

  • coldbox-1139 Enhance the logEvent class to have a better serialization schema for extraInfo, it can use convention $toString() on the incoming extra info object to do auto serialization on it.  If not, if complex it will use JSON notation.

  • coldbox-1147 LogBox category parsing needs a length check when the category sent is blank

  • coldbox-1154 performance tuning that is outta hand!
So to use the new $toString() convention, all you need to do is create a function called "$toString()" that returns a string representation of the object it exists on.  Once this object is sent for logging via the extraInfo argument (2 argument in any log operation), LogBox will call this serializer for you.

function $toString(){
  return "I am a string representation of this CFC";
}

We also want to leave you with a performance tip when using LogBox.  Don't send log methods without checking first if you can actually send something to its logging level.  This will help tremendously when generating log messages and accelerate your application.  So for example:

Don't do this:
log.warn("This is a warning");

Do this:
if( log.canWarn() ){
   log.warn("This is a warning");
}


So what are you waiting for, download it now!

Add Your Comment

Recent Entries

ColdBox 7.2.0 Released

ColdBox 7.2.0 Released

ColdBox, a widely used development platform for ColdFusion (CFML), has unveiled version 7.2. Packed with compelling new features, bug fixes, and enhancements, this release is designed to empower developers by boosting productivity, refining scheduled task capabilities, and enhancing the overall reliability and efficiency of application development. This article will delve into the key highlights of ColdBox 7.2 and elucidate how these advancements can positively impact developers in their daily coding endeavors.

Luis Majano
Luis Majano
November 20, 2023
Into the Box 2023 Series on CFCast

Into the Box 2023 Series on CFCast

Excitement is in the air as we unleash the highly anticipated ITB 2023 series exclusively for our valued CFCast subscribers – and the best part? It's FREE for CFCast members! Now is the perfect time if you haven't joined the CFCast community yet. Plus, we've got an incredible End-of-Year deal that's too good to miss

Maria Jose Herrera
Maria Jose Herrera
November 20, 2023
Ortus Deals are Finally Here!

Ortus Deals are Finally Here!

The much-anticipated Ortus End-of-the-Year Sale has arrived, and it's time to elevate your development experience! Whether you're a seasoned developer, a tech enthusiast, or someone on the lookout for top-notch projects, Ortus has something special in store for you. Brace yourself for incredible discounts across a wide array of products and services, including Ortus annual events, books, cutting-edge services, and more.

Maria Jose Herrera
Maria Jose Herrera
November 15, 2023