https://github.com/ContentMine/quickscrape
Revision e0b694f94f11795983ce832803eb1929a0c74e53 authored by Richard Smith-Unna on 14 June 2015, 12:30:56 UTC, committed by Richard Smith-Unna on 14 June 2015, 12:30:56 UTC
1 parent 99a0983
Raw File
Tip revision: e0b694f94f11795983ce832803eb1929a0c74e53 authored by Richard Smith-Unna on 14 June 2015, 12:30:56 UTC
Bump thresher for new scraper validation
Tip revision: e0b694f
loglevels.js
var log = module.exports;

log.levels = {
  silly: 0,
  input: 1,
  verbose: 2,
  prompt: 3,
  debug: 4,
  data: 5,
  info: 6,
  help: 7,
  warn: 8,
  error: 9
};

log.colors = {
  silly: 'magenta',
  input: 'grey',
  verbose: 'cyan',
  prompt: 'grey',
  debug: 'blue',
  info: 'green',
  data: 'grey',
  help: 'cyan',
  warn: 'yellow',
  error: 'red'
};
back to top