DiscordTickets/src/events/debug.js
Isaac (eartharoid) 62494aaa4d progress
2020-08-17 14:46:23 +01:00

17 lines
285 B
JavaScript

/**
*
* @name DiscordTickets
* @author eartharoid <contact@eartharoid.me>
* @license GNU-GPLv3
*
*/
const ChildLogger = require('leekslazylogger').ChildLogger;
const log = new ChildLogger();
module.exports = {
event: 'debug',
execute(client, [e]) {
log.debug(e);
}
};