18F/trello-webhook-server

View on GitHub
src/error-log.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';
const chalk = require('chalk');

module.exports = function log(msg) {
  console.error(chalk.red(`TRELLO WEBHOOK SERVER: ${msg}`)); // eslint-disable-line no-console
};