Skip to content

Commit

Permalink
Debug instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuro-Rui committed Jul 12, 2024
1 parent b032800 commit e23ef07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/commands/cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ def display_emoji(self) -> str | discord.Emoji | discord.PartialEmoji:
raise NotImplementedError()

def cog_load(self) -> None:
self._log.info("Loaded %s", self.qualified_name)
self._log.debug("Loaded %s", self.qualified_name)

def cog_unload(self) -> None:
self._log.info("Unloaded %s", self.qualified_name)
self._log.debug("Unloaded %s", self.qualified_name)

@property
def help(self) -> str | None:
Expand Down

0 comments on commit e23ef07

Please sign in to comment.