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:]