A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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!");