require('colors');

// TODO: just logFunction changes, probably doesn't need a whole new module just
// for this
class TestLogger {
  constructor(options) {
    this.logLevels = ['error', 'warn', 'info', 'debug', 'trace'];
    this.logs = [];
    this.logLevel = options.logLevel || 'info';
  }

  logFunction() {
    this.logs.push(arguments);
    //console.dir(arguments[0]);
  }

  contractsState() {
    this.logs.push(arguments);
  }

  availableServices() {
    this.logs.push(arguments);
  }

  error(txt) {
    if (!(this.shouldLog('error'))) {
      return;
    }
    console.error(txt);
    this.logFunction(txt.red);
  }

  warn(txt) {
    if (!(this.shouldLog('warn'))) {
      return;
    }
    this.logFunction(txt.yellow);
  }

  info(txt) {
    if (!(this.shouldLog('info'))) {
      return;
    }
    this.logFunction(txt.green);
  }

  debug(txt) {
    if (!(this.shouldLog('debug'))) {
      return;
    }
    this.logFunction(txt);
  }

  trace(txt) {
    if (!(this.shouldLog('trace'))) {
      return;
    }
    this.logFunction(txt);
  }

  shouldLog(level) {
    return (this.logLevels.indexOf(level) <= this.logLevels.indexOf(this.logLevel));
  }

}

module.exports = TestLogger;