telosys.objects
Class Logger

java.lang.Object
  extended bytelosys.objects.Logger

public class Logger
extends java.lang.Object

Logger class for JavaScript logging Class used by the "fwkCreateLogger" function


Constructor Summary
Logger(string name)
          Creates a new logger with the given name
 
Method Summary
 void clear()
          Clear the logger console
 void debug(string msg)
          Log a 'debug' message
 void desc()
           
 void error(string msg)
          Log an 'error' message
 void eval(string id)
          Eval the script contained in the given field id
 void hide()
          Hide the logger console
 void info(string msg)
          Log an 'info' message
 void show()
          Show the logger console
 void warning(string msg)
          Log a 'warning' message
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Logger

public Logger(string name)
Creates a new logger with the given name

Parameters:
name -
Method Detail

debug

public void debug(string msg)
Log a 'debug' message

Parameters:
msg -

info

public void info(string msg)
Log an 'info' message

Parameters:
msg -

warning

public void warning(string msg)
Log a 'warning' message

Parameters:
msg -

error

public void error(string msg)
Log an 'error' message

Parameters:
msg -

show

public void show()
Show the logger console


hide

public void hide()
Hide the logger console


clear

public void clear()
Clear the logger console


eval

public void eval(string id)
Eval the script contained in the given field id

Parameters:
id -

desc

public void desc()