seedcord 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -548,7 +548,7 @@ var EventController = class {
548
548
  }
549
549
  attachToClient() {
550
550
  for (const [eventName, handlerEntries] of this.eventMap) {
551
- this.logger.debug(`Attaching ${chalk3.bold.green(eventName)} to ${chalk3.bold.yellow(this.core.bot.client.user?.username)}`);
551
+ this.logger.debug(`Attaching ${chalk3.bold.green(eventName)} to the client with ${chalk3.gray(handlerEntries.length)} handler(s)`);
552
552
  for (const entry of handlerEntries) {
553
553
  const register = entry.frequency === "once" ? this.core.bot.client.once.bind(this.core.bot.client) : this.core.bot.client.on.bind(this.core.bot.client);
554
554
  register(eventName, (...args) => {