From 262a35026269b8c8007206883b351fddd638131c Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 22 Aug 2020 05:00:40 +0100 Subject: [PATCH] letting me see the statistics for the member cache --- cogs/owner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/owner.py b/cogs/owner.py index 7e351a52..18c08da7 100644 --- a/cogs/owner.py +++ b/cogs/owner.py @@ -107,9 +107,9 @@ class Owner(Cog): else: max_cache_len, cache_len, queue_len = self.bot.member_cache.get_size() - await self.bot.generate_embed(ctx, desc=f"\nCurrent Records Stored Within Cache: **{cache_len}**" + await self.bot.generate_embed(ctx, desc=f"Current Records Stored Within Cache: **{cache_len}**" f"\nCurrent Queue Length: **{queue_len}**" - f"Max Size Of Cache: **{max_cache_len}**") + f"\nMax Size Of Cache: **{max_cache_len}**") def setup(bot):