A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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