APRK01 commited on
Commit Β·
eab4b19
1
Parent(s): 628c8dc
debug: add session ID to ready logs
Browse files- src/events/ready.js +2 -1
src/events/ready.js
CHANGED
|
@@ -4,8 +4,9 @@ module.exports = {
|
|
| 4 |
name: 'ready',
|
| 5 |
once: true,
|
| 6 |
execute(client) {
|
|
|
|
| 7 |
console.log(`\nββββββββββββββββββββββββββββββββββββββββββββββββ`);
|
| 8 |
-
console.log(` π£ WSB β Wyvern Softworks Bot`);
|
| 9 |
console.log(` β
Logged in as ${client.user.tag}`);
|
| 10 |
console.log(` π Serving ${client.guilds.cache.size} guild(s)`);
|
| 11 |
console.log(`ββββββββββββββββββββββββββββββββββββββββββββββββ\n`);
|
|
|
|
| 4 |
name: 'ready',
|
| 5 |
once: true,
|
| 6 |
execute(client) {
|
| 7 |
+
const sessionId = Math.random().toString(36).substring(7).toUpperCase();
|
| 8 |
console.log(`\nββββββββββββββββββββββββββββββββββββββββββββββββ`);
|
| 9 |
+
console.log(` π£ WSB β Wyvern Softworks Bot [ID: ${sessionId}]`);
|
| 10 |
console.log(` β
Logged in as ${client.user.tag}`);
|
| 11 |
console.log(` π Serving ${client.guilds.cache.size} guild(s)`);
|
| 12 |
console.log(`ββββββββββββββββββββββββββββββββββββββββββββββββ\n`);
|