From 9f0fadf90884e180559d7e0d5b4ff926e11eba2c Mon Sep 17 00:00:00 2001 From: Michal Tuszowski Date: Wed, 8 Jan 2025 11:41:14 +0100 Subject: [PATCH] Logs additional --- other_functions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/other_functions.py b/other_functions.py index be80980..134d644 100644 --- a/other_functions.py +++ b/other_functions.py @@ -90,10 +90,10 @@ async def get_stats(client, ctx, history_limit): async def discord_friendly_reply(ctx, message_content, file=None): if len(message_content) < 999: - LOGGER.info("Wiadomosci ponizej 999 znakow") + LOGGER.info("Answer reply - message below 999") await ctx.reply(message_content) else: - LOGGER.info("Wiadomosci powyzej 999 znakow") + LOGGER.info("Answer reply - message above 999") while len(message_content) > 999: await ctx.reply(message_content[:999]) message_content = message_content[999:] @@ -102,10 +102,10 @@ async def discord_friendly_reply(ctx, message_content, file=None): async def discord_friendly_send(ctx, message_content, file=None): if len(message_content) < 999: - LOGGER.info("Wiadomosci ponizej 999 znakow") + LOGGER.info("Answer send - message below 999") await ctx.send(message_content) else: - LOGGER.info("Wiadomosci powyzej 999 znakow") + LOGGER.info("Answer send - message above 999") while len(message_content) > 999: await ctx.send(message_content[:999]) message_content = message_content[999:]