Skip to content

Commit

Permalink
lower log char limit
Browse files Browse the repository at this point in the history
  • Loading branch information
arcinfini committed Jul 11, 2024
1 parent 4daf197 commit 0a455f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cogs/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ async def log(self, ctx: commands.Context, lines: int = 10):

log = "".join(log)

if len(log) > 2000:
if len(log) > 1900:
await ctx.send(
f"Returned over 2k chars, sending as file instead.\n"
f"(first 1k chars for quick reference)\n"
Expand Down

0 comments on commit 0a455f1

Please sign in to comment.