home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / com / bourre / log / LogEvent.as < prev    next >
Text File  |  2007-12-11  |  482b  |  16 lines

  1. class com.bourre.log.LogEvent extends com.bourre.events.BasicEvent
  2. {
  3.    static var onLogEVENT = new com.bourre.events.EventType("onLog");
  4.    function LogEvent(oLevel, oContent, channel)
  5.    {
  6.       super(!channel ? com.bourre.log.LogEvent.onLogEVENT : channel);
  7.       this.level = oLevel;
  8.       this.content = oContent;
  9.       this.timestamp = new Date().getTime();
  10.    }
  11.    function toString()
  12.    {
  13.       return com.bourre.log.PixlibStringifier.stringify(this);
  14.    }
  15. }
  16.