RIALogger v1.3 update to AIR Beta 3

Posted on January 9, 2008 | 5 comments

The RIALogger has been updated to the latest AIR release Beta 3.

You can get the more information about the RIALogger and the custom logging target here.

  • http://www.jroller.com/wookets Sean Wesenberg

    Thanks!

  • http://hat6.com Dusty

    Any chance we can get a version with the trace(“lc.send” commented out?

    Thanks!

  • http://hat6.com Dusty

    Also, I’m getting this error:
    Category [ [object DataPointVO]] has illegal characters.

    when I try to Logger.info(this, messageString)

    Any idea what I’m doing wrong?

  • http://hat6.com Dusty

    So, just to prove that I can read source code, on Logger.as, line 322, you test for DisplayObject or Class. The problem is that for some reason “myObject is Class” == false, and I can’t understand how this could be. I’m using a standard Cairngorm model/VO:
    public class DataPointVO implements IValueObject

    And yet, dataPointVO is Class == false :-(

    For the record, getFullyQualifiedClassName(this) returns the correct:
    com.redclay.CAISDataVisualization.vo::DataPointVO

    So.. how can I get my object to identify as Class? (so I don’t have to change the toString() functions on some of my other classes that I plan on using this with)

    Thanks!
    -d

  • http://renaun.com Renaun Erickson

    To help with the confusion of instances of classes and the usage of “this” I started to just use the Class name it self. So in your example instead of using myObject just use DataPointVO.

    There is an updated renaun_com_Logger.zip file. It has an updated example application with a custom class in it.