A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
211B

  1. var logging = require('./app/logging.js');
  2. var log = new logging.Log("bob");
  3. log.info("So there!");
  4. log.debug("Debug test.");
  5. log.warning("Warning test.");
  6. log.error("Error test.");
  7. log.critical("Crit test!");