log stuff

This commit is contained in:
ry 2020-02-16 22:20:32 +01:00
parent 35b73e99ad
commit 8aa1b361ca
2 changed files with 10 additions and 5 deletions

View File

@ -14,7 +14,8 @@ module.exports = {
if (client.user.id === '434662676547764244') {
blapi.handle(client, config.apis);
}
log.hasStarted();
//log.hasStarted();
console.log('The Bot is online')
status.randomStatus(client)
setInterval(() => {
status.randomStatus(client);

View File

@ -1,4 +1,6 @@
const { logChannel } = require("../config");
const {
logChannel
} = require("../config");
const util = require("../utils");
module.exports = {
@ -9,8 +11,10 @@ module.exports = {
client.options.shards.length - 1
] + 1}/${client.options.shards.length} is ready`;
await util.log.shardReady(message);
await util.log.shardSpinnerStarted(message);
console.log(message)
//await util.log.shardReady(message);
//await util.log.shardSpinnerStarted(message);
// if (logs !== undefined) logs.send(message);
}
};
};