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.cjs CHANGED
@@ -571,7 +571,7 @@ var EventController = class {
571
571
  }
572
572
  attachToClient() {
573
573
  for (const [eventName, handlerEntries] of this.eventMap) {
574
- this.logger.debug(`Attaching ${chalk3__default.default.bold.green(eventName)} to ${chalk3__default.default.bold.yellow(this.core.bot.client.user?.username)}`);
574
+ this.logger.debug(`Attaching ${chalk3__default.default.bold.green(eventName)} to the client with ${chalk3__default.default.gray(handlerEntries.length)} handler(s)`);
575
575
  for (const entry of handlerEntries) {
576
576
  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);
577
577
  register(eventName, (...args) => {