Remove console.time thigny as it was not what i wanted anyway

This commit is contained in:
loicbersier 2020-07-11 20:26:45 +02:00
parent 337efe965c
commit 044062c259
2 changed files with 0 additions and 18 deletions

View file

@ -1,16 +0,0 @@
const { Listener } = require('discord-akairo');
class commandFinishedListener extends Listener {
constructor() {
super('commandFinished', {
emitter: 'commandHandler',
event: 'commandFinished'
});
}
async exec(message, command) {
console.timeEnd(command.id);
}
}
module.exports = commandFinishedListener;

View file

@ -13,8 +13,6 @@ class commandStartedListener extends Listener {
}
async exec(message, command) {
console.time(command.id);
//This is for april fools
let today = new Date(), lastUpdate;