log stuff
This commit is contained in:
parent
35b73e99ad
commit
8aa1b361ca
2 changed files with 10 additions and 5 deletions
|
@ -14,7 +14,8 @@ module.exports = {
|
||||||
if (client.user.id === '434662676547764244') {
|
if (client.user.id === '434662676547764244') {
|
||||||
blapi.handle(client, config.apis);
|
blapi.handle(client, config.apis);
|
||||||
}
|
}
|
||||||
log.hasStarted();
|
//log.hasStarted();
|
||||||
|
console.log('The Bot is online')
|
||||||
status.randomStatus(client)
|
status.randomStatus(client)
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
status.randomStatus(client);
|
status.randomStatus(client);
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
const { logChannel } = require("../config");
|
const {
|
||||||
|
logChannel
|
||||||
|
} = require("../config");
|
||||||
const util = require("../utils");
|
const util = require("../utils");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
@ -9,8 +11,10 @@ module.exports = {
|
||||||
client.options.shards.length - 1
|
client.options.shards.length - 1
|
||||||
] + 1}/${client.options.shards.length} is ready`;
|
] + 1}/${client.options.shards.length} is ready`;
|
||||||
|
|
||||||
await util.log.shardReady(message);
|
console.log(message)
|
||||||
await util.log.shardSpinnerStarted(message);
|
|
||||||
|
//await util.log.shardReady(message);
|
||||||
|
//await util.log.shardSpinnerStarted(message);
|
||||||
// if (logs !== undefined) logs.send(message);
|
// if (logs !== undefined) logs.send(message);
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in a new issue