2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-24 10:58:19 +00:00

12 lines
222 B
JavaScript
Raw Normal View History

2017-07-24 14:44:42 +02:00
'use strict';
const logError = err =>
console.error(`${err.name}: ${err.message}`);
const print = value =>
console.log(inspect(value, { colors: true, depth: null }));
module.exports = {
logError,
print
};