Packagecom.acleveraddress.net.multi_loader.utils
Classpublic class MultiLoaderDebug

Manages all errors, warnings, and debug messages.

Level is set by MultiLoader.debug

See also

com.research_now.net.multi_loader.MultiLoader.debug


Public Methods
 MethodDefined by
  
report():void
[static] Trace out a pretty print report of what has loaded, failed etc
MultiLoaderDebug
  
write(message:String, level:uint):void
[static]
MultiLoaderDebug
Public Constants
 ConstantDefined by
  DEBUG : uint = 1
[static] Logs all messages, however unimportant they may be.
MultiLoaderDebug
  ERROR : uint = 3
[static] Logs any errors that will affect the loading, eg items that couldn't be downloaded
MultiLoaderDebug
  WARNING : uint = 2
[static] Logs anything that looks a little suspicious, that could cause problems further down the line.
MultiLoaderDebug
Method detail
report()method
public static function report():void

Trace out a pretty print report of what has loaded, failed etc

write()method 
public static function write(message:String, level:uint):voidParameters
message:String
 
level:uint
Constant detail
DEBUGconstant
public static const DEBUG:uint = 1

Logs all messages, however unimportant they may be. Can help to monitor everything that's going on, but can be a bit annoying as it logs so much

ERRORconstant 
public static const ERROR:uint = 3

Logs any errors that will affect the loading, eg items that couldn't be downloaded

WARNINGconstant 
public static const WARNING:uint = 2

Logs anything that looks a little suspicious, that could cause problems further down the line. This is the recommended and default level.