mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-24 10:58:19 +00:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
|
'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
|
||
|
};
|