2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-23 02:17:47 +00:00

17 lines
269 B
JavaScript
Raw Normal View History

2020-03-13 22:02:41 +01:00
// @ts-check
2017-07-24 17:12:38 +02:00
'use strict';
2017-10-29 20:27:59 +01:00
/* eslint-disable no-console */
2017-07-24 17:12:38 +02:00
const { inspect } = require('util');
const logError = err => console.error(err);
2017-09-24 18:34:32 +02:00
2017-07-24 17:12:38 +02:00
const print = value =>
console.log(inspect(value, { colors: true, depth: null }));
module.exports = {
logError,
print
};