aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-03-16 20:33:35 +0000
committerGravatar Chris <[email protected]>2021-03-16 20:33:35 +0000
commit9503a2edc7b9609da6f96a65c9742259f106bbb1 (patch)
tree787fa2ab1a3f46086c4d8ad45e17eeac844e8fdc
parentExtend close time logic to differentiate between the claimant and other users. (diff)
Improve trace message.
-rw-r--r--bot/exts/help_channels/_channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py
index 95b8cdc1f..8db6e7617 100644
--- a/bot/exts/help_channels/_channel.py
+++ b/bot/exts/help_channels/_channel.py
@@ -59,7 +59,7 @@ async def get_closing_time(channel: discord.TextChannel) -> t.Optional[int]:
# The further away closing time is what we should use.
closing_time = max(claimant, last_message)
- log.trace(f"claimant: {claimant}, last_message: {last_message}")
+ log.trace(f"claimant closing time: {claimant}, last_message closing time: {last_message}")
log.trace(f"#{channel} ({channel.id}) should be closed at {closing_time}.")
return closing_time