// Usage example for Logger javascript class
// Don't forget to include the logger.js file

var log = new Logger(Logger.INFO);
log.info("This message will be printed on stdout");
log.error("And so this one");
log.debug("But this don't! (As Logger.INFO was specified on object creation.)");