1
0
Fork 0

connect success log

refactor/models
Matthew 2019-10-27 20:10:23 -04:00
parent d9c1c635e7
commit 700a146856
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 1 deletions

View File

@ -79,6 +79,7 @@ export default class Client extends Eris.Client {
}); });
await mongoose.connect(config.mongoURL); await mongoose.connect(config.mongoURL);
this.connect(); await this.connect();
this.signale.success(`Successfully connected to Discord | ${this.user.username}#${this.user.discriminator}`);
} }
} }