home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Esportes
/
CrossingCup.swf
/
scripts
/
__Packages
/
com
/
bourre
/
log
/
LogEvent.as
< prev
next >
Wrap
Text File
|
2007-12-11
|
482b
|
16 lines
class com.bourre.log.LogEvent extends com.bourre.events.BasicEvent
{
static var onLogEVENT = new com.bourre.events.EventType("onLog");
function LogEvent(oLevel, oContent, channel)
{
super(!channel ? com.bourre.log.LogEvent.onLogEVENT : channel);
this.level = oLevel;
this.content = oContent;
this.timestamp = new Date().getTime();
}
function toString()
{
return com.bourre.log.PixlibStringifier.stringify(this);
}
}