1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2024-11-25 11:28:45 +01:00
community-numbers/util/logger.js
2019-05-14 20:52:48 +02:00

8 lines
197 B
JavaScript

/* eslint-disable no-console */
const chalk = require('chalk')
const log = text => console.log(text)
const logError = text => console.log(chalk.bold.red(text))
module.exports = { log, logError }