diff options
| author | 2020-03-31 12:16:14 +0200 | |
|---|---|---|
| committer | 2020-03-31 12:16:14 +0200 | |
| commit | 687f2c4c5875e9de2abeeb122eeee529816ee204 (patch) | |
| tree | 19296b9fffd22279a62c50d6a5f3b1e73dca12df | |
| parent | Set unsilence permissions to inherit instead of true (diff) | |
| parent | Merge branch 'master' into update-logging-levels (diff) | |
Merge pull request #845 from python-discord/update-logging-levels
Logging Level Adjustments
| -rw-r--r-- | bot/cogs/alias.py | 2 | ||||
| -rw-r--r-- | bot/cogs/bot.py | 1 | ||||
| -rw-r--r-- | bot/cogs/moderation/scheduler.py | 2 | ||||
| -rw-r--r-- | bot/cogs/moderation/superstarify.py | 4 | ||||
| -rw-r--r-- | bot/cogs/moderation/utils.py | 2 | ||||
| -rw-r--r-- | bot/cogs/snekbox.py | 2 | ||||
| -rw-r--r-- | bot/cogs/sync/syncers.py | 2 | ||||
| -rw-r--r-- | bot/converters.py | 2 | ||||
| -rw-r--r-- | bot/utils/messages.py | 2 | 
9 files changed, 9 insertions, 10 deletions
| diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 9001e18f0..55c7efe65 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -29,7 +29,7 @@ class Alias (Cog):              return log.info(f'Did not find command "{cmd_name}" to invoke.')          elif not await cmd.can_run(ctx):              return log.info( -                f'{str(ctx.author)} tried to run the command "{cmd_name}"' +                f'{str(ctx.author)} tried to run the command "{cmd_name}" but lacks permission.'              )          await ctx.invoke(cmd, *args, **kwargs) diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index f17135877..e897b30ff 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -67,7 +67,6 @@ class BotCog(Cog, name="Bot"):              icon_url=URLs.bot_avatar          ) -        log.info(f"{ctx.author} called !about. Returning information about the bot.")          await ctx.send(embed=embed)      @command(name='echo', aliases=('print',)) diff --git a/bot/cogs/moderation/scheduler.py b/bot/cogs/moderation/scheduler.py index f0b6b2c48..917697be9 100644 --- a/bot/cogs/moderation/scheduler.py +++ b/bot/cogs/moderation/scheduler.py @@ -222,7 +222,7 @@ class InfractionScheduler(Scheduler):          # If multiple active infractions were found, mark them as inactive in the database          # and cancel their expiration tasks.          if len(response) > 1: -            log.warning( +            log.info(                  f"Found more than one active {infr_type} infraction for user {user.id}; "                  "deactivating the extra active infractions too."              ) diff --git a/bot/cogs/moderation/superstarify.py b/bot/cogs/moderation/superstarify.py index 893cb7f13..ca3dc4202 100644 --- a/bot/cogs/moderation/superstarify.py +++ b/bot/cogs/moderation/superstarify.py @@ -59,7 +59,7 @@ class Superstarify(InfractionScheduler, Cog):              return  # Nick change was triggered by this event. Ignore.          log.info( -            f"{after.display_name} is currently in superstar-prison. " +            f"{after.display_name} ({after.id}) tried to escape superstar prison. "              f"Changing the nick back to {before.display_name}."          )          await after.edit( @@ -80,7 +80,7 @@ class Superstarify(InfractionScheduler, Cog):          )          if not notified: -            log.warning("Failed to DM user about why they cannot change their nickname.") +            log.info("Failed to DM user about why they cannot change their nickname.")      @Cog.listener()      async def on_member_join(self, member: Member) -> None: diff --git a/bot/cogs/moderation/utils.py b/bot/cogs/moderation/utils.py index 5052b9048..3598f3b1f 100644 --- a/bot/cogs/moderation/utils.py +++ b/bot/cogs/moderation/utils.py @@ -38,7 +38,7 @@ async def post_user(ctx: Context, user: UserSnowflake) -> t.Optional[dict]:      log.trace(f"Attempting to add user {user.id} to the database.")      if not isinstance(user, (discord.Member, discord.User)): -        log.warning("The user being added to the DB is not a Member or User object.") +        log.debug("The user being added to the DB is not a Member or User object.")      payload = {          'avatar_hash': getattr(user, 'avatar', 0), diff --git a/bot/cogs/snekbox.py b/bot/cogs/snekbox.py index 454836921..315383b12 100644 --- a/bot/cogs/snekbox.py +++ b/bot/cogs/snekbox.py @@ -301,7 +301,7 @@ class Snekbox(Cog):              code = await self.continue_eval(ctx, response)              if not code:                  break -            log.info(f"Re-evaluating message {ctx.message.id}") +            log.info(f"Re-evaluating code from message {ctx.message.id}:\n{code}")  def predicate_eval_message_edit(ctx: Context, old_msg: Message, new_msg: Message) -> bool: diff --git a/bot/cogs/sync/syncers.py b/bot/cogs/sync/syncers.py index c7ce54d65..003bf3727 100644 --- a/bot/cogs/sync/syncers.py +++ b/bot/cogs/sync/syncers.py @@ -131,7 +131,7 @@ class Syncer(abc.ABC):              await message.edit(content=f':ok_hand: {mention}{self.name} sync will proceed.')              return True          else: -            log.warning(f"The {self.name} syncer was aborted or timed out!") +            log.info(f"The {self.name} syncer was aborted or timed out!")              await message.edit(                  content=f':warning: {mention}{self.name} sync aborted or timed out!'              ) diff --git a/bot/converters.py b/bot/converters.py index 2b413f039..72c46fdf0 100644 --- a/bot/converters.py +++ b/bot/converters.py @@ -351,7 +351,7 @@ class FetchedUser(UserConverter):          except discord.HTTPException as e:              # If the Discord error isn't `Unknown user`, return a proxy instead              if e.code != 10013: -                log.warning(f"Failed to fetch user, returning a proxy instead: status {e.status}") +                log.info(f"Failed to fetch user, returning a proxy instead: status {e.status}")                  return proxy_user(arg)              log.debug(f"Failed to fetch user {arg}: user does not exist.") diff --git a/bot/utils/messages.py b/bot/utils/messages.py index a36edc774..e969ee590 100644 --- a/bot/utils/messages.py +++ b/bot/utils/messages.py @@ -92,7 +92,7 @@ async def send_attachments(              elif link_large:                  large.append(attachment)              else: -                log.warning(f"{failure_msg} because it's too large.") +                log.info(f"{failure_msg} because it's too large.")          except HTTPException as e:              if link_large and e.status == 413:                  large.append(attachment) | 
