aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2020-09-23 13:45:40 -0700
committerGravatar GitHub <[email protected]>2020-09-23 13:45:40 -0700
commitdd6979be47fdae061fcc3dbbe92c7c923995973c (patch)
tree18e85999c7128d02193b75ac7ae49b1457bbaacb
parentFix use of expanded infraction response for username (diff)
parentIncidents: bump archive log to INFO level (diff)
Merge pull request #1171 from python-discord/kwzrd/log-levels
Adjust verification & incidents log levels
-rw-r--r--bot/exts/moderation/incidents.py2
-rw-r--r--bot/exts/moderation/verification.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/moderation/incidents.py b/bot/exts/moderation/incidents.py
index e49913552..31be48a43 100644
--- a/bot/exts/moderation/incidents.py
+++ b/bot/exts/moderation/incidents.py
@@ -237,7 +237,7 @@ class Incidents(Cog):
not all information was relayed, return False. This signals that the original
message is not safe to be deleted, as we will lose some information.
"""
- log.debug(f"Archiving incident: {incident.id} (outcome: {outcome}, actioned by: {actioned_by})")
+ log.info(f"Archiving incident: {incident.id} (outcome: {outcome}, actioned by: {actioned_by})")
embed, attachment_file = await make_embed(incident, outcome, actioned_by)
try:
diff --git a/bot/exts/moderation/verification.py b/bot/exts/moderation/verification.py
index 210c7a1af..6bbe81701 100644
--- a/bot/exts/moderation/verification.py
+++ b/bot/exts/moderation/verification.py
@@ -286,7 +286,7 @@ class Verification(Cog):
Returns the amount of successful requests. Failed requests are logged at info level.
"""
- log.info(f"Sending {len(members)} requests")
+ log.trace(f"Sending {len(members)} requests")
n_success, bad_statuses = 0, set()
for progress, member in enumerate(members, start=1):