1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2024-06-26 03:06:47 +02:00
community-numbers/util/logger.js

8 lines
199 B
JavaScript
Raw Normal View History

2019-05-14 20:52:48 +02:00
/* eslint-disable no-console */
const chalk = require('chalk')
const log = text => console.log(text)
const logError = text => console.error(chalk.bold.red(text))
2019-05-14 20:52:48 +02:00
module.exports = { log, logError }