Packagecom.bourre.log
Classpublic class PixlibDebug
ImplementsLog

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Dedicated Logging tunnel using own event channel.

Heavily use in Lowra internal framework so don't connect to this event channel if you want to kick Lowra logging messages.


Example
  
  PixlibDebug.DEBUG( "my debug message" );
  



Public Properties
 PropertyDefined by
  CHANNEL : EventChannel
[static][read-only]
PixlibDebug
  isOn : Boolean
[static]
PixlibDebug
Public Methods
 MethodDefined by
  
debug(o:*):void
Logs passed-in message with a log level defined at 'debug' mode.
PixlibDebug
  
DEBUG(o:*):void
[static]
PixlibDebug
  
error(o:*):void
Logs passed-in message with a log level defined at 'error' mode.
PixlibDebug
  
ERROR(o:*):void
[static]
PixlibDebug
  
fatal(o:*):void
Logs passed-in message with a log level defined at 'fatal' mode.
PixlibDebug
  
FATAL(o:*):void
[static]
PixlibDebug
  
Returns event channel used for communication.
PixlibDebug
  
[static] Returns unique instance of PixlibDebug tunnel.
PixlibDebug
  
info(o:*):void
Logs passed-in message with a log level defined at 'info' mode.
PixlibDebug
  
INFO(o:*):void
[static]
PixlibDebug
  
isOn():Boolean
Returns true if logging tunnel is opened.
PixlibDebug
  
off():void
Closes the logging tunnel.
PixlibDebug
  
on():void
Opens the logging tunnel.
PixlibDebug
  
warn(o:*):void
Logs passed-in message with a log level defined at 'warn' mode.
PixlibDebug
  
WARN(o:*):void
[static]
PixlibDebug
Property detail
CHANNELproperty
CHANNEL:EventChannel  [read-only]

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Implementation
    public static function get CHANNEL():EventChannel

See also

getChannel()
isOnproperty 
isOn:Boolean  [read-write]

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Implementation
    public static function get isOn():Boolean
    public function set isOn(value:Boolean):void

See also

isOn()
Method detail
debug()method
public function debug(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Logs passed-in message with a log level defined at 'debug' mode.

Parameters
o:*
DEBUG()method 
public static function DEBUG(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Parameters
o:*

See also

debug()
error()method 
public function error(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Logs passed-in message with a log level defined at 'error' mode.

Parameters
o:*
ERROR()method 
public static function ERROR(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Parameters
o:*

See also

error()
fatal()method 
public function fatal(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Logs passed-in message with a log level defined at 'fatal' mode.

Parameters
o:*
FATAL()method 
public static function FATAL(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Parameters
o:*

See also

fatal()
getChannel()method 
public function getChannel():EventChannel

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Returns event channel used for communication.

Returns
EventChannel
getInstance()method 
public static function getInstance():Log

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Returns unique instance of PixlibDebug tunnel.

Returns
Log
info()method 
public function info(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Logs passed-in message with a log level defined at 'info' mode.

Parameters
o:*
INFO()method 
public static function INFO(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Parameters
o:*

See also

info()
isOn()method 
public function isOn():Boolean

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Returns true if logging tunnel is opened.

Returns
Boolean
off()method 
public function off():void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Closes the logging tunnel.

on()method 
public function on():void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Opens the logging tunnel.

warn()method 
public function warn(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Logs passed-in message with a log level defined at 'warn' mode.

Parameters
o:*
WARN()method 
public static function WARN(o:*):void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Parameters
o:*

See also

warn()